spaCy/spacy/word.pxd
Matthew Honnibal 4e5b2d47e2 * More docs
2014-08-29 03:01:40 +02:00

21 lines
496 B
Cython

from .typedefs cimport hash_t, utf8_t, flag_t, id_t
DEF MAX_FLAG = 64
cdef class Lexeme:
# NB: the readonly keyword refers to _Python_ access. The attributes are
# writeable from Cython.
cpdef readonly size_t length
cpdef readonly double prob
cpdef readonly size_t cluster
cpdef readonly string
cpdef readonly list views
cdef readonly flag_t flags
cpdef bint check_flag(self, size_t flag_id) except *
cpdef unicode string_view(self, size_t view_id)