Module Expr.Infix

val (&&) : bool t -> bool t -> bool t
val (||) : bool t -> bool t -> bool t
val (+) : int t -> int t -> int t

Integer addition

val (-) : int t -> int t -> int t

Integer subtraction

val (*) : int t -> int t -> int t

Integer multiplacation

val (/) : int t -> int t -> int t

Integer division

val (+.) : float t -> float t -> float t

Float addition

val (-.) : float t -> float t -> float t

Float subtraction

val (*.) : float t -> float t -> float t

Float multiplication

val (/.) : float t -> float t -> float t

Float division

val (**) : float t -> float t -> float t

Pow

val (?>) : 'a t -> ( 'a -> 'b t ) -> 'b t

Operator version of map

module Pixel : sig ... end
module Kernel : sig ... end
module Transform : sig ... end