keyset.pxd 534 B

12345678910111213141516
  1. from lakesuperior.model.base cimport (
  2. KeyIdx, Key, DoubleKey, TripleKey, Buffer
  3. )
  4. cdef class Keyset:
  5. cdef:
  6. TripleKey* data
  7. size_t ct
  8. size_t _cur # Index cursor used to look up values.
  9. size_t _free_i # Index of next free slot.
  10. void seek(self, size_t idx=*)
  11. size_t tell(self)
  12. bint get_at(self, size_t i, TripleKey* item)
  13. bint get_next(self, TripleKey* item)
  14. void add(self, const TripleKey* val) except *
  15. bint contains(self, const TripleKey* val)