You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from libcpp.vector cimport vector
|
|
|
|
from ..structs cimport SpanC
|
|
|
|
|
|
cdef class SpanGroup:
|
|
cdef public object _doc_ref
|
|
cdef public str name
|
|
cdef public dict attrs
|
|
cdef vector[SpanC] c
|
|
|
|
cdef void push_back(self, SpanC span) nogil
|