mirror of https://github.com/explosion/spaCy.git
16 lines
313 B
Cython
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
|