package integers

  1. Overview
  2. Docs

Module UInt32.InfixSource

Sourceval (+) : t -> t -> t

Addition. See add.

Sourceval (-) : t -> t -> t

Subtraction. See sub.

Sourceval (*) : t -> t -> t

Multiplication. See mul.

Sourceval (/) : t -> t -> t

Division. See div.

Sourceval (mod) : t -> t -> t

Integer remainder. See rem.

Sourceval (land) : t -> t -> t

Bitwise logical and. See logand.

Sourceval (lor) : t -> t -> t

Bitwise logical or. See logor.

Sourceval (lxor) : t -> t -> t

Bitwise logical exclusive or. See logxor.

Sourceval (lsl) : t -> int -> t

x lsl y shifts x to the left by y bits. See shift_left.

Sourceval (lsr) : t -> int -> t

x lsr y shifts x to the right by y bits. See shift_right.

OCaml

Innovation. Community. Security.