package incr_dom_partial_render

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

A sortable value. The sorting order of a row is specified by specifying a conversion to this type.

Note that typically, all values will be injected into just one of these variant constructors. The sorting between different constructors is considered arbitrary.

type t =
  1. | String of string
  2. | Float of float
  3. | Integer of Core.Int63.t
  4. | Null
include Ppx_compare_lib.Comparable.S with type t := t
include Sexplib0.Sexpable.S with type t := t
include Table_intf.Sort_key with type t := t
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
include Ppx_compare_lib.Comparable.S with type t := t
val compare : t -> t -> int