func (cursor *Cursor) Del(flags uint) error { ret := C.mdb_cursor_del(cursor._cursor, C.uint(flags)) if ret != SUCCESS { return Errno(ret) } return nil }
// Del deletes the item referred to by the cursor from the database. // // See mdb_cursor_del. func (c *Cursor) Del(flags uint) error { ret := C.mdb_cursor_del(c._c, C.uint(flags)) return operrno("mdb_cursor_del", ret) }
func (cursor *Cursor) Del(flags uint) error { ret := C.mdb_cursor_del(cursor._cursor, C.uint(flags)) return errno(ret) }