package shakuhachi

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Field.IntSource

Operations on integer field node.

Sourcetype t =
  1. | Id of int64 Range.t
  2. | Size of int64 Range.t
  3. | Track of int Range.t
  4. | Year of int Range.t
  5. | Disc of int Range.t
  6. | Plays of int Range.t
  7. | Length of int Range.t
  8. | Rating of int Range.t
  9. | AlbumCount of int Range.t

type of integer field node

Sourceval id : int64 Range.t -> t

id range is Id range.

Sourceval size : int64 Range.t -> t

size range is Size range.

Sourceval track : int Range.t -> t

track range is Track range.

Sourceval year : int Range.t -> t

year range is Year range.

Sourceval disc : int Range.t -> t

disc range is Disc range.

Sourceval plays : int Range.t -> t

plays range is Plays range.

Sourceval length : int Range.t -> t

length range is Length range.

Sourceval rating : int Range.t -> t

rating range is Rating range.

Sourceval album_count : int Range.t -> t

album_count range is AlbumCount range.

Sourceval to_string : t -> string

to_string field returns a string representation of field.

Sourceval to_sexp : t -> string

to_sexp field returns a s-expression compatible string of field.