module type REFOPS = sig end
The operations supported.
type
t
The numeric type of the operations
val (+=) : Numref.REFOPS.t Pervasives.ref -> Numref.REFOPS.t -> unit
a += b
adds b to the value in a.
val (-=) : Numref.REFOPS.t Pervasives.ref -> Numref.REFOPS.t -> unit
a -= b
subtracts b from the value in a.
val (*=) : Numref.REFOPS.t Pervasives.ref -> Numref.REFOPS.t -> unit
a *= b
multiplies a with b and updates a with the result.
val (/=) : Numref.REFOPS.t Pervasives.ref -> Numref.REFOPS.t -> unit
a /= b
divides a with b and updates a with the result.