2004-11-28 03:35:12 +00:00
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< html xmlns = "http://www.w3.org/1999/xhtml" xml:lang = "en" lang = "en" >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" / >
2010-08-09 20:07:24 +00:00
< meta name = "generator" content = "Docutils 0.7: http://docutils.sourceforge.net/" / >
2004-11-28 03:35:12 +00:00
< title > The MPL Reference Manual: deque< / title >
< link rel = "stylesheet" href = "../style.css" type = "text/css" / >
< / head >
< body class = "docframe refmanual" >
< table class = "header" > < tr class = "header" > < td class = "header-group navigation-bar" > < span class = "navigation-group" > < a href = "./list.html" class = "navigation-link" > Prev< / a > < a href = "./set.html" class = "navigation-link" > Next< / a > < / span > < span class = "navigation-group-separator" > | < / span > < span class = "navigation-group" > < a href = "./list.html" class = "navigation-link" > Back< / a > < a href = "./set.html" class = "navigation-link" > Along< / a > < / span > < span class = "navigation-group-separator" > | < / span > < span class = "navigation-group" > < a href = "./classes.html" class = "navigation-link" > Up< / a > < a href = "../refmanual.html" class = "navigation-link" > Home< / a > < / span > < span class = "navigation-group-separator" > | < / span > < span class = "navigation-group" > < a href = "./refmanual_toc.html" class = "navigation-link" > Full TOC< / a > < / span > < / td >
< td class = "header-group page-location" > < a href = "../refmanual.html" class = "navigation-link" > Front Page< / a > / < a href = "./sequences.html" class = "navigation-link" > Sequences< / a > / < a href = "./classes.html" class = "navigation-link" > Classes< / a > / < a href = "./deque.html" class = "navigation-link" > deque< / a > < / td >
< / tr > < / table > < div class = "header-separator" > < / div >
< div class = "section" id = "deque" >
2010-08-09 20:07:24 +00:00
< h1 > < a class = "toc-backref" href = "./classes.html#id1408" > deque< / a > < / h1 >
2009-08-17 11:30:52 +00:00
< div class = "section" id = "id64" >
2004-11-28 03:35:12 +00:00
< h3 > < a class = "subsection-title" href = "#description" name = "description" > Description< / a > < / h3 >
2010-08-09 20:07:24 +00:00
< p > < tt class = "literal" > < span class = "pre" > < a href = "./deque.html" class = "identifier" > deque< / a > < / span > < / tt > is a < a class = "reference internal" href = "./variadic-sequence.html" > variadic< / a > , < a class = "reference internal" href = "./random-access-sequence.html" > random access< / a > , < a class = "reference internal" href = "./extensible-sequence.html" > extensible< / a > sequence of types that
2009-08-17 11:30:52 +00:00
supports constant-time insertion and removal of elements at both ends, and
linear-time insertion and removal of elements in the middle. In this implementation
of the library, < tt class = "literal" > < span class = "pre" > < a href = "./deque.html" class = "identifier" > deque< / a > < / span > < / tt > is a synonym for < a class = "reference internal" href = "./vector.html" > vector< / a > .< / p >
2004-11-28 03:35:12 +00:00
< / div >
2009-08-17 11:30:52 +00:00
< div class = "section" id = "id67" >
2004-11-28 03:35:12 +00:00
< h3 > < a class = "subsection-title" href = "#header" name = "header" > Header< / a > < / h3 >
< pre class = "literal-block" >
#include < < a href = "../../../../boost/mpl/deque.hpp" class = "header" > boost/mpl/deque.hpp< / a > >
< / pre >
< / div >
2009-08-17 11:30:52 +00:00
< div class = "section" id = "id68" >
2004-11-28 03:35:12 +00:00
< h3 > < a class = "subsection-title" href = "#model-of" name = "model-of" > Model of< / a > < / h3 >
< ul class = "simple" >
2009-08-17 11:30:52 +00:00
< li > < a class = "reference internal" href = "./variadic-sequence.html" > Variadic Sequence< / a > < / li >
< li > < a class = "reference internal" href = "./random-access-sequence.html" > Random Access Sequence< / a > < / li >
< li > < a class = "reference internal" href = "./extensible-sequence.html" > Extensible Sequence< / a > < / li >
< li > < a class = "reference internal" href = "./back-extensible-sequence.html" > Back Extensible Sequence< / a > < / li >
< li > < a class = "reference internal" href = "./front-extensible-sequence.html" > Front Extensible Sequence< / a > < / li >
2004-11-28 03:35:12 +00:00
< / ul >
< / div >
2009-08-17 11:30:52 +00:00
< div class = "section" id = "id69" >
2004-11-28 03:35:12 +00:00
< h3 > < a class = "subsection-title" href = "#expression-semantics" name = "expression-semantics" > Expression semantics< / a > < / h3 >
2009-08-17 11:30:52 +00:00
< p > See < a class = "reference internal" href = "./vector.html" > vector< / a > specification.< / p >
2004-11-28 03:35:12 +00:00
< / div >
2009-08-17 11:30:52 +00:00
< div class = "section" id = "id70" >
2004-11-28 03:35:12 +00:00
< h3 > < a class = "subsection-title" href = "#example" name = "example" > Example< / a > < / h3 >
< pre class = "literal-block" >
typedef < a href = "./deque.html" class = "identifier" > deque< / a > < float,double,long double> floats;
typedef < a href = "./push-back.html" class = "identifier" > push_back< / a > < floats,int> ::type types;
< a href = "./assert.html" class = "identifier" > BOOST_MPL_ASSERT< / a > (( is_same< < a href = "./at-c.html" class = "identifier" > at_c< / a > < types,3> ::type, int > ));
< / pre >
< / div >
2009-08-17 11:30:52 +00:00
< div class = "section" id = "id71" >
2004-11-28 03:35:12 +00:00
< h3 > < a class = "subsection-title" href = "#see-also" name = "see-also" > See also< / a > < / h3 >
2009-08-17 11:30:52 +00:00
< p > < a class = "reference internal" href = "./sequences.html" > Sequences< / a > , < a class = "reference internal" href = "./vector.html" > vector< / a > , < a class = "reference internal" href = "./list.html" > list< / a > , < a class = "reference internal" href = "./set.html" > set< / a > < / p >
2004-11-28 03:35:12 +00:00
<!-- Sequences/Classes//set |40 -->
< / div >
< / div >
< div class = "footer-separator" > < / div >
< table class = "footer" > < tr class = "footer" > < td class = "header-group navigation-bar" > < span class = "navigation-group" > < a href = "./list.html" class = "navigation-link" > Prev< / a > < a href = "./set.html" class = "navigation-link" > Next< / a > < / span > < span class = "navigation-group-separator" > | < / span > < span class = "navigation-group" > < a href = "./list.html" class = "navigation-link" > Back< / a > < a href = "./set.html" class = "navigation-link" > Along< / a > < / span > < span class = "navigation-group-separator" > | < / span > < span class = "navigation-group" > < a href = "./classes.html" class = "navigation-link" > Up< / a > < a href = "../refmanual.html" class = "navigation-link" > Home< / a > < / span > < span class = "navigation-group-separator" > | < / span > < span class = "navigation-group" > < a href = "./refmanual_toc.html" class = "navigation-link" > Full TOC< / a > < / span > < / td >
2009-08-17 11:30:52 +00:00
< td > < div class = "copyright-footer" > < div class = "copyright" > Copyright © 2001-2009 Aleksey Gurtovoy and David Abrahams< / div >
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at < a class = "reference external" href = "http://www.boost.org/LICENSE_1_0.txt" target = "_top" > http://www.boost.org/LICENSE_1_0.txt< / a > )< / div > < / td > < / tr > < / table > < / body >
2004-11-28 03:35:12 +00:00
< / html >