Difference between revisions of "cpp/container/queue"
From cppreference.com
m (Text replace - "{{tdcl" to "{{dcl") |
m (Text replace - "container/tdcl" to "container/dcl") |
||
Line 13: | Line 13: | ||
{{dcl list begin}} | {{dcl list begin}} | ||
{{dcl list hitem | Member type | Definition}} | {{dcl list hitem | Member type | Definition}} | ||
− | {{dcl list template | cpp/container/ | + | {{dcl list template | cpp/container/dcl list container_type | queue}} |
− | {{dcl list template | cpp/container/ | + | {{dcl list template | cpp/container/dcl list value_type | queue}} |
− | {{dcl list template | cpp/container/ | + | {{dcl list template | cpp/container/dcl list size_type | queue}} |
− | {{dcl list template | cpp/container/ | + | {{dcl list template | cpp/container/dcl list reference | queue}} |
− | {{dcl list template | cpp/container/ | + | {{dcl list template | cpp/container/dcl list const_reference | queue}} |
{{dcl list end}} | {{dcl list end}} | ||
Revision as of 02:06, 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 |