Difference between revisions of "cpp/container/queue"
From cppreference.com
m (Text replace - "{{tdcl list begin" to "{{dcl list begin") |
m (Text replace - "{{tdcl list end" to "{{dcl list end") |
||
Line 18: | Line 18: | ||
{{tdcl list template | cpp/container/tdcl list reference | queue}} | {{tdcl list template | cpp/container/tdcl list reference | queue}} | ||
{{tdcl list template | cpp/container/tdcl list const_reference | queue}} | {{tdcl list template | cpp/container/tdcl list const_reference | queue}} | ||
− | {{ | + | {{dcl list end}} |
===Member functions=== | ===Member functions=== |
Revision as of 01:27, 12 June 2012
Template:cpp/container/queue/sidebar
Defined in header <queue>
|
||
template< class T, |
||
The std::queue
class is a container adapter that gives the programmer the functionality of a queue - specifically, a FIFO (first-in, first-out) data structure.
Contents |