keyset.pxd 793 B

1234567891011121314151617181920212223242526
  1. from lakesuperior.model.base cimport (
  2. Key, Key, DoubleKey, TripleKey, Buffer
  3. )
  4. ctypedef bint (*key_cmp_fn_t)(
  5. const TripleKey* spok, const Key* k1, const Key* k2
  6. )
  7. cdef class Keyset:
  8. cdef:
  9. TripleKey* data
  10. size_t ct
  11. size_t _cur # Index cursor used to look up values.
  12. size_t _free_i # Index of next free slot.
  13. void seek(self, size_t idx=*)
  14. size_t tell(self)
  15. bint get_at(self, size_t i, TripleKey* item)
  16. bint get_next(self, TripleKey* item)
  17. void add(self, const TripleKey* val) except *
  18. bint contains(self, const TripleKey* val)
  19. Keyset copy(self)
  20. void resize(self, size_t size=*) except *
  21. Keyset lookup(
  22. self, const Key* sk, const Key* pk, const Key* ok
  23. )