You can search for identifiers within the package.
in-package search v0.2.0
RFC 3164 Timestamps
val encode : Ptime.t -> string
encode t is data, a timestamp in the presentation of RFC 3164.
encode t
data
val decode : string -> int -> (Ptime.t * string, [> `Msg of string ]) result
decode data year is Ok (timestamp, leftover), the decoded RFC 3164 timestamp and superfluous bytes, or Error e on parse failure.
decode data year
Ok (timestamp, leftover)
Error e