Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
time.ml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17module type Time = sig include Apero.Ordered.S val after: t -> t -> bool val before: t -> t -> bool val to_string: t -> string val of_string: string -> t option val to_rfc3339: t -> string val to_seconds: t -> float val encode: t -> Abuf.t -> unit val decode: Abuf.t -> t val pp: Format.formatter -> t -> unit end