Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/container/queue"

From cppreference.com
< cpp‎ | container
m (Text replace - "operator_comp" to "operator_cmp")
m (r2.7.3) (Robot: Adding it, ja, pl, pt, ru, tr)
Line 54: Line 54:
 
{{dcl list template | cpp/container/dcl list uses_allocator | queue}}
 
{{dcl list template | cpp/container/dcl list uses_allocator | queue}}
 
{{dcl list end}}
 
{{dcl list end}}
 +
 +
[[it:cpp/container/queue]]
 +
[[ja:cpp/container/queue]]
 +
[[pl:cpp/container/queue]]
 +
[[pt:cpp/container/queue]]
 +
[[ru:cpp/container/queue]]
 +
[[tr:cpp/container/queue]]

Revision as of 12:40, 4 May 2012

Template:cpp/container/queue/sidebar

Defined in header <queue>
template<

    class T,
    class Container = std::deque<T>

> class queue;

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

Member types

Template:tdcl list begin Template:tdcl list hitem Template:tdcl list template Template:tdcl list template Template:tdcl list template Template:tdcl list template Template:tdcl list template Template:tdcl list end

Member functions

Template:cpp/container/dcl list constructorTemplate:cpp/container/dcl list destructorTemplate:cpp/container/dcl list operator=Template:cpp/container/dcl list frontTemplate:cpp/container/dcl list backTemplate:cpp/container/dcl list emptyTemplate:cpp/container/dcl list sizeTemplate:cpp/container/dcl list pushTemplate:cpp/container/dcl list emplaceTemplate:cpp/container/dcl list popTemplate:cpp/container/dcl list swapTemplate:cpp/container/dcl list c
Element access
Capacity
Modifiers

Member objects

Non-member functions

Template:cpp/container/dcl list operator cmpTemplate:cpp/container/dcl list swap2

Helper classes

Template:cpp/container/dcl list uses allocator