package spotlib

  1. Overview
  2. Docs
type t = [
  1. | `Minus of int * int
  2. | `Plus of int * int
  3. | `UTC
]

`UTC and `Plus (0,0) are the same. `Minus (0,0) is invalid.

val to_string : [< t ] -> string
val is_valid : t -> bool
val random : unit -> t