Module Values.MatchRangeSource

An object that represents the range of values to match on. The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched.

Sourcetype nonrec t = {
  1. end_ : Long.t;
    (*

    The end of the range.

    *)
  2. start : Long.t;
    (*

    The start of the range.

    *)
}
Sourceval context_ : string
Sourceval make : end_:Long.t -> start:Long.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t