package tezos-stdlib-unix

  1. Overview
  2. Docs
type op = [
  1. | `Lt
  2. | `Le
  3. | `Ge
  4. | `Gt
]
type t = [
  1. | `All
  2. | `And of t * t
  3. | `Or of t * t
  4. | `Date of op * float
  5. | `Time of op * float
]