Temporal.Timeval of_ticks : ?tz_offset_seconds:int -> int64 -> tA time from nanoseconds since midnight and an optional offset.
val to_ticks : t -> int64Nanoseconds since midnight.
val tz_offset_seconds : t -> int optionThe UTC offset in seconds, if any.
val of_hms_ns : ?tz_offset_seconds:int -> int -> int -> int -> int -> t optionA time from (hour, minute, second, nanosecond); None if out of range.
val to_hms_ns : t -> int * int * int * intThe (hour, minute, second, nanosecond) of a time.
val to_iso8601 : t -> stringFormat as "HH:MM:SS.fff...+HH:MM".
val of_iso8601 : string -> t optionParse "HH:MM:SS.fractionZ|+HH:MM"; None if invalid.
val to_string : t -> stringAlias for to_iso8601.