Module Lmdb__Lmdb_bindings.DbiFlags
include Flags
- val (+) : t -> t -> t
- a + bis the union of flag sets- aand- b. This corresponds to a bitwise or on C bitfields.
- val (*) : t -> t -> t
- a * bis the intersection of flag sets a and b. This corresponds to a bitwise and on C bitfields.
- val test : t -> t -> bool
- test a bis- trueonly if- ais a subset of- b. This corresponds to- a & b == afor C bitfields.
- val unset : t -> t -> t
- unset a bremoves flags- afrom flag set- b. This corresponds to- a & ~bfor C bitfields.
- val none : t
- noneThe empty set of flags.