package sihl

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. limit : int option;
  2. offset : int option;
}
val pp : Stdlib.Format.formatter -> t -> unit
val show : t -> string
val equal : t -> t -> bool
val to_yojson : t -> Yojson.Safe.t
val empty : t
val set_limit : int -> t -> t
val set_offset : int -> t -> t
val get_limit : t -> int option
val get_offset : t -> int option
val of_string : string -> (t, string) Result.t
val to_string : t -> string