package sihl

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

Repositories can return meta data containing information like total rows affected. This can be useful for pagination.

type t = {
  1. total : int;
}
val pp : Ppx_deriving_runtime.Format.formatter -> t -> Ppx_deriving_runtime.unit
val equal : t -> t -> Ppx_deriving_runtime.bool
val make : total:int -> t
val total : t -> int
module Fields : sig ... end