package incr_dom_widgets

  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_kernel.Int63.t
  4. | Null
include sig ... end
include Table_intf.Sort_key with type t := t
include sig ... end
val t_of_sexp : Sexplib.Sexp.t -> t
val sexp_of_t : t -> Sexplib.Sexp.t
val compare : t -> t -> int