spaCy/spacy/strings.pxd
2014-12-20 06:42:01 +11:00

16 lines
313 B
Cython

from cymem.cymem cimport Pool
from preshed.maps cimport PreshMap
from .structs cimport Utf8Str
cdef class StringStore:
cdef Pool mem
cdef Utf8Str* strings
cdef size_t size
cdef PreshMap _map
cdef size_t _resize_at
cdef const Utf8Str* intern(self, char* chars, int length) except NULL