This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-01-25/mockenv/lib/python3.6/site-packages/Cython/Includes/libcpp/stack.pxd

12 lines
292 B
Cython
Raw Normal View History

2022-07-22 12:43:59 +02: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&)
size_t size()
T& top()