package conan

  1. Overview
  2. Docs

Module Conan.ArithmeticSource

Sourcetype '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
Sourceval serialize : (Format.formatter -> 'a -> unit) -> Format.formatter -> 'a t -> unit
Sourceval pp : (Format.formatter -> 'a -> unit) -> Format.formatter -> 'a t -> unit
Sourceval map : f:('a -> 'b) -> 'a t -> 'b t
Sourceval value : 'a t -> 'a
Sourceval of_string : with_val:'a -> string -> 'a t
Sourceval is : char -> bool
Sourceval add : 'a -> 'a t
Sourceval sub : 'a -> 'a t
Sourceval div : 'a -> 'a t
Sourceval rem : 'a -> 'a t
Sourceval mul : 'a -> 'a t
Sourceval logand : 'a -> 'a t
Sourceval logxor : 'a -> 'a t
Sourceval logor : 'a -> 'a t
Sourceval invert : 'a t -> 'a t
Sourceval process : ?unsigned:bool -> 'a Integer.t -> 'a -> 'a t -> 'a
Sourceval process_float : float -> float t -> float
Sourceval process_ptime : Ptime.Span.t -> Ptime.Span.t t -> Ptime.Span.t