cursorClose method

void cursorClose(
  1. Pointer<MDB_cursor> cursor
)

Closes a cursor

The cursor must not be used after closing.

Implementation

void cursorClose(Pointer<MDB_cursor> cursor) {
  _lib.mdb_cursor_close(cursor);
}