Pin Chrome's shortcut to the Win10 Start menu on install and OS upgrade.
[chromium-blink-merge.git] / third_party / cython / src / Cython / Includes / libcpp / stack.pxd
blobd8c4314fb0f9f4164ebb3dff14c2330a12987dac
1 cdef extern from "<stack>" namespace "std":
2     cdef cppclass stack[T]:
3         stack() nogil except +
4         stack(stack&) nogil except +
5         #stack(Container&)
6         bint empty() nogil
7         void pop() nogil
8         void push(T&) nogil
9         size_t size() nogil
10         T& top() nogil