spaCy/spacy/_hashing.pxd

12 lines
280 B
Cython
Raw Normal View History

2014-08-01 10:27:21 +04:00
from libc.stdint cimport uint64_t
cdef class FixedTable:
cdef size_t size
cdef uint64_t* keys
cdef size_t* values
cdef int insert(self, uint64_t key, size_t value) nogil
cdef size_t get(self, uint64_t key) nogil
cdef int erase(self, uint64_t key) nogil