keyset.pxd 343 B

123456789101112
  1. cdef class Keyset:
  2. cdef:
  3. readonly unsigned char *data
  4. readonly unsigned char itemsize
  5. readonly size_t ct, size
  6. size_t _cur
  7. void resize(self, size_t ct) except *
  8. unsigned char *get_item(self, i)
  9. bint iter_next(self, unsigned char** val)
  10. bint contains(self, const void *val)