diff --git a/doc/boost_range.html b/doc/boost_range.html index 8a6bd93..56742ba 100644 --- a/doc/boost_range.html +++ b/doc/boost_range.html @@ -61,7 +61,7 @@
- Please also see Range concepts for more details. + Please also see Range concepts for more details.
range_reverse_result_iterator<X>::type( begin(x) )
begin(x)
const_begin(x)
range_const_iterator<X>::type
range_const_iterator<X>::type( begin(x) )
+begin(x)
const_end(x)
range_const_iterator<X>::type
range_const_iterator<X>::type( end(x) )
+ end(x)
const_rbegin(x)
range_const_reverse_iterator<X>::type
range_const_reverse_iterator<X>::type( rbegin(x) )
+ rbegin(x)
const_rend(x)
range_const_reverse_iterator<X>::type
range_const_reverse_iterator<X>::type( rend(x) )
+ rend(x)
+ The special const
functions are not part of any Range concept,
+ but are very useful when you want to document clearly that your code is
+ read-only.
+
<boost/range/begin.hpp>
<boost/range/end.hpp>
<boost/range/rbegin.hpp>
<boost/range/rend.hpp>