mdb_cursor_close function

void mdb_cursor_close(
  1. Pointer<MDB_cursor> cursor
)

@brief Close a cursor handle.

The cursor handle will be freed and must not be used again after this call. Its transaction must still be live if it is a write-transaction. @paramin cursor A cursor handle returned by #mdb_cursor_open()

Implementation

@ffi.FfiNative<ffi.Void Function(ffi.Pointer<MDB_cursor>)>('mdb_cursor_close')
external void mdb_cursor_close(
  ffi.Pointer<MDB_cursor> cursor,
);