package conan

  1. Overview
  2. Docs
type 'a t =
  1. | Invert of 'a t
  2. | Add of 'a
  3. | Sub of 'a
  4. | Mul of 'a
  5. | Div of 'a
  6. | Mod of 'a
  7. | Bitwise_and of 'a
  8. | Bitwise_xor of 'a
  9. | Bitwise_or of 'a
val serialize : (Format.formatter -> 'a -> unit) -> Format.formatter -> 'a t -> unit
val pp : (Format.formatter -> 'a -> unit) -> Format.formatter -> 'a t -> unit
val map : f:('a -> 'b) -> 'a t -> 'b t
val value : 'a t -> 'a
val of_string : with_val:'a -> string -> 'a t
val is : char -> bool
val add : 'a -> 'a t
val sub : 'a -> 'a t
val div : 'a -> 'a t
val rem : 'a -> 'a t
val mul : 'a -> 'a t
val logand : 'a -> 'a t
val logxor : 'a -> 'a t
val logor : 'a -> 'a t
val invert : 'a t -> 'a t
val process : ?unsigned:bool -> 'a Integer.t -> 'a -> 'a t -> 'a
val process_float : float -> float t -> float
val process_ptime : Ptime.Span.t -> Ptime.Span.t t -> Ptime.Span.t