Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Side by Side Diff: third_party/cython/src/Cython/Includes/libcpp/queue.pxd

Issue 385073004: Adding cython v0.20.2 in third-party. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reference cython dev list thread. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 cdef extern from "<queue>" namespace "std":
2 cdef cppclass queue[T]:
3 queue() nogil except +
4 queue(queue&) nogil except +
5 #queue(Container&)
6 T& back() nogil
7 bint empty() nogil
8 T& front() nogil
9 void pop() nogil
10 void push(T&) nogil
11 size_t size() nogil
12 cdef cppclass priority_queue[T]:
13 priority_queue() nogil except +
14 priority_queue(priority_queue&) nogil except +
15 #priority_queue(Container&)
16 bint empty() nogil
17 void pop() nogil
18 void push(T&) nogil
19 size_t size() nogil
20 T& top() nogil
OLDNEW
« no previous file with comments | « third_party/cython/src/Cython/Includes/libcpp/pair.pxd ('k') | third_party/cython/src/Cython/Includes/libcpp/set.pxd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698