2010-04-28 16:09:03 +00:00
< html >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset=US-ASCII" >
< title > reverse< / title >
< link rel = "stylesheet" href = "../../../../../../../../doc/html/boostbook.css" type = "text/css" >
< meta name = "generator" content = "DocBook XSL Stylesheets V1.75.1" >
< link rel = "home" href = "../../../../index.html" title = "Chapter 1. Range 2.0" >
< link rel = "up" href = "../mutating.html" title = "Mutating algorithms" >
< link rel = "prev" href = "replace_if.html" title = "replace_if" >
< link rel = "next" href = "reverse_copy.html" title = "reverse_copy" >
< / head >
< body bgcolor = "white" text = "black" link = "#0000FF" vlink = "#840084" alink = "#0000FF" >
< table cellpadding = "2" width = "100%" > < tr >
< td valign = "top" > < img alt = "Boost C++ Libraries" width = "277" height = "86" src = "../../../../../../../../boost.png" > < / td >
< td align = "center" > < a href = "../../../../../../../../index.html" > Home< / a > < / td >
< td align = "center" > < a href = "../../../../../../../libraries.htm" > Libraries< / a > < / td >
< td align = "center" > < a href = "http://www.boost.org/users/people.html" > People< / a > < / td >
< td align = "center" > < a href = "http://www.boost.org/users/faq.html" > FAQ< / a > < / td >
< td align = "center" > < a href = "../../../../../../../../more/index.htm" > More< / a > < / td >
< / tr > < / table >
< hr >
< div class = "spirit-nav" >
< a accesskey = "p" href = "replace_if.html" > < img src = "../../../../../../../../doc/html/images/prev.png" alt = "Prev" > < / a > < a accesskey = "u" href = "../mutating.html" > < img src = "../../../../../../../../doc/html/images/up.png" alt = "Up" > < / a > < a accesskey = "h" href = "../../../../index.html" > < img src = "../../../../../../../../doc/html/images/home.png" alt = "Home" > < / a > < a accesskey = "n" href = "reverse_copy.html" > < img src = "../../../../../../../../doc/html/images/next.png" alt = "Next" > < / a >
< / div >
< div class = "section" title = "reverse" >
< div class = "titlepage" > < div > < div > < h5 class = "title" >
< a name = "range.reference.algorithms.mutating.reverse" > < / a > < a class = "link" href = "reverse.html" title = "reverse" > reverse< / a >
< / h5 > < / div > < / div > < / div >
< a name = "range.reference.algorithms.mutating.reverse.prototype" > < / a > < h6 >
2010-04-28 18:03:26 +00:00
< a name = "id2740001" > < / a >
2010-04-28 16:09:03 +00:00
< a class = "link" href = "reverse.html#range.reference.algorithms.mutating.reverse.prototype" > Prototype< / a >
< / h6 >
< p >
< / p >
< pre class = "programlisting" > < span class = "keyword" > template< / span > < span class = "special" > < < / span > < span class = "keyword" > class< / span > < span class = "identifier" > BidirectionalRange< / span > < span class = "special" > > < / span >
< span class = "identifier" > BidirectionalRange< / span > < span class = "special" > & < / span > < span class = "identifier" > reverse< / span > < span class = "special" > (< / span > < span class = "identifier" > BidirectionalRange< / span > < span class = "special" > & < / span > < span class = "identifier" > rng< / span > < span class = "special" > );< / span >
< span class = "keyword" > template< / span > < span class = "special" > < < / span > < span class = "keyword" > class< / span > < span class = "identifier" > BidirectionalRange< / span > < span class = "special" > > < / span >
< span class = "keyword" > const< / span > < span class = "identifier" > BidirectionalRange< / span > < span class = "special" > & < / span > < span class = "identifier" > reverse< / span > < span class = "special" > (< / span > < span class = "keyword" > const< / span > < span class = "identifier" > BidirectionalRange< / span > < span class = "special" > & < / span > < span class = "identifier" > rng< / span > < span class = "special" > );< / span >
< / pre >
< p >
< / p >
< a name = "range.reference.algorithms.mutating.reverse.description" > < / a > < h6 >
2010-04-28 18:03:26 +00:00
< a name = "id2740175" > < / a >
2010-04-28 16:09:03 +00:00
< a class = "link" href = "reverse.html#range.reference.algorithms.mutating.reverse.description" > Description< / a >
< / h6 >
< p >
< code class = "computeroutput" > < span class = "identifier" > reverse< / span > < / code > reverses a range.
Returns a reference to the reversed range.
< / p >
< a name = "range.reference.algorithms.mutating.reverse.definition" > < / a > < h6 >
2010-04-28 18:03:26 +00:00
< a name = "id2740213" > < / a >
2010-04-28 16:09:03 +00:00
< a class = "link" href = "reverse.html#range.reference.algorithms.mutating.reverse.definition" > Definition< / a >
< / h6 >
< p >
Defined in the header file < code class = "computeroutput" > < span class = "identifier" > boost< / span > < span class = "special" > /< / span > < span class = "identifier" > range< / span > < span class = "special" > /< / span > < span class = "identifier" > algorithm< / span > < span class = "special" > /< / span > < span class = "identifier" > reverse< / span > < span class = "special" > .< / span > < span class = "identifier" > hpp< / span > < / code >
< / p >
< a name = "range.reference.algorithms.mutating.reverse.requirements" > < / a > < h6 >
2010-04-28 18:03:26 +00:00
< a name = "id2740286" > < / a >
2010-04-28 16:09:03 +00:00
< a class = "link" href = "reverse.html#range.reference.algorithms.mutating.reverse.requirements" > Requirements< / a >
< / h6 >
< div class = "itemizedlist" > < ul class = "itemizedlist" type = "disc" >
< li class = "listitem" >
< code class = "computeroutput" > < span class = "identifier" > BidirectionalRange< / span > < / code >
is a model of the < a class = "link" href = "../../../concepts/bidirectional_range.html" title = "Bidirectional Range" > Bidirectional
Range< / a > Concept.
< / li >
< li class = "listitem" >
< code class = "computeroutput" > < span class = "identifier" > BidirectionalRange< / span > < / code >
is mutable.
< / li >
< / ul > < / div >
< a name = "range.reference.algorithms.mutating.reverse.complexity" > < / a > < h6 >
2010-04-28 18:03:26 +00:00
< a name = "id2740348" > < / a >
2010-04-28 16:09:03 +00:00
< a class = "link" href = "reverse.html#range.reference.algorithms.mutating.reverse.complexity" > Complexity< / a >
< / h6 >
< p >
Linear. < code class = "computeroutput" > < span class = "identifier" > reverse< / span > < / code > makes
< code class = "computeroutput" > < span class = "identifier" > distance< / span > < span class = "special" > (< / span > < span class = "identifier" > rng< / span > < span class = "special" > )/< / span > < span class = "number" > 2< / span > < / code > calls to < code class = "computeroutput" > < span class = "identifier" > iter_swap< / span > < / code > .
< / p >
< / div >
< table xmlns:rev = "http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width = "100%" > < tr >
< td align = "left" > < / td >
< td align = "right" > < div class = "copyright-footer" > Copyright © 2003 -2010 Thorsten Ottosen, Neil Groves< p >
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at < a href = "http://www.boost.org/LICENSE_1_0.txt" target = "_top" > http://www.boost.org/LICENSE_1_0.txt< / a > )
< / p >
< / div > < / td >
< / tr > < / table >
< hr >
< div class = "spirit-nav" >
< a accesskey = "p" href = "replace_if.html" > < img src = "../../../../../../../../doc/html/images/prev.png" alt = "Prev" > < / a > < a accesskey = "u" href = "../mutating.html" > < img src = "../../../../../../../../doc/html/images/up.png" alt = "Up" > < / a > < a accesskey = "h" href = "../../../../index.html" > < img src = "../../../../../../../../doc/html/images/home.png" alt = "Home" > < / a > < a accesskey = "n" href = "reverse_copy.html" > < img src = "../../../../../../../../doc/html/images/next.png" alt = "Next" > < / a >
< / div >
< / body >
< / html >