add method
Adds a flag to the set using bitwise OR operation.
flag The LMDB flag to add (e.g., MDB_RDONLY, MDB_NOSUBDIR).
Implementation
void add(int flag) => _flags |= flag;
Adds a flag to the set using bitwise OR operation.
flag The LMDB flag to add (e.g., MDB_RDONLY, MDB_NOSUBDIR).
void add(int flag) => _flags |= flag;