keyset.pxd 358 B

12345678910111213
  1. from lakesuperior.cy_include cimport collections as cc
  2. from lakesuperior.model.base cimport (
  3. KeyIdx, Key, DoubleKey, TripleKey, Buffer
  4. )
  5. cdef class Keyset:
  6. cdef:
  7. readonly size_t ct, size
  8. cc.Array* data
  9. cc.ArrayConf conf
  10. Keyset lookup(
  11. self, const KeyIdx* sk, const KeyIdx* pk, const KeyIdx* ok
  12. )