ai-content-maker/.venv/Lib/site-packages/Cython/Includes/libcpp/stack.pxd

12 lines
301 B
Cython
Raw Permalink Normal View History

2024-05-03 04:18:51 +03:00
cdef extern from "<stack>" namespace "std" nogil:
cdef cppclass stack[T]:
ctypedef T value_type
stack() except +
stack(stack&) except +
#stack(Container&)
bint empty()
void pop()
void push(T&) except +
size_t size()
T& top()