package lmdb

  1. Overview
  2. Docs

Module Mdb.FlagsSource

Sourcetype t

The type of a set of flags

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

a + b is the union of flag sets a and b. This corresponds to a bitwise or on C bitfields.

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

a * b is the intersection of flag sets a and b. This corresponds to a bitwise and on C bitfields.

Sourceval test : t -> t -> bool

test a b is true only if a is a subset of b. This corresponds to a & b == a for C bitfields.

Sourceval unset : t -> t -> t

unset a b removes flags a from flag set b. This corresponds to a & ~b for C bitfields.

Sourceval eq : t -> t -> bool

eq a b The equals relation.

Sourceval of_int : int -> t
Sourceval to_int : t -> int
Sourceval none : t

none The empty set of flags.

OCaml

Innovation. Community. Security.