package links

  1. Overview
  2. Docs
type t =
  1. | Plus
  2. | Minus
  3. | Multiply
  4. | Divide
  5. | Greater
  6. | GreaterEqual
  7. | Less
  8. | LessEqual
  9. | Equal
  10. | LogicalAnd
  11. | LogicalOr
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val to_string : t -> string
val of_string : string -> (t, Operator_not_found_exception.t) result
val of_string_exn : string -> t

Do not use.

val fmt : Format.formatter -> t -> unit