summaryrefslogtreecommitdiff
path: root/libs/icl/doc/functions_iterator_related.qbk
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2012-10-30 12:57:26 -0700
committerAnas Nashif <anas.nashif@intel.com>2012-10-30 12:57:26 -0700
commit1a78a62555be32868418fe52f8e330c9d0f95d5a (patch)
treed3765a80e7d3b9640ec2e930743630cd6b9fce2b /libs/icl/doc/functions_iterator_related.qbk
downloadboost-1a78a62555be32868418fe52f8e330c9d0f95d5a.tar.gz
boost-1a78a62555be32868418fe52f8e330c9d0f95d5a.tar.bz2
boost-1a78a62555be32868418fe52f8e330c9d0f95d5a.zip
Imported Upstream version 1.49.0upstream/1.49.0
Diffstat (limited to 'libs/icl/doc/functions_iterator_related.qbk')
-rw-r--r--libs/icl/doc/functions_iterator_related.qbk76
1 files changed, 76 insertions, 0 deletions
diff --git a/libs/icl/doc/functions_iterator_related.qbk b/libs/icl/doc/functions_iterator_related.qbk
new file mode 100644
index 0000000000..7cb198c37c
--- /dev/null
+++ b/libs/icl/doc/functions_iterator_related.qbk
@@ -0,0 +1,76 @@
+[/
+ Copyright (c) 2008-2009 Joachim Faulhaber
+
+ Distributed under the Boost Software License, Version 1.0.
+ (See accompanying file LICENSE_1_0.txt or copy at
+ http://www.boost.org/LICENSE_1_0.txt)
+]
+
+
+[/ //= Iterator related ===================================================================]
+[section Iterator related]
+
+
+[table
+[[['*Synopsis Complexities*]] [__ch_itv_sets__][__ch_itv_maps__][__ch_ele_sets__][__ch_ele_maps__] ]
+[[`J T::begin()`] [__O1__] [__O1__] [__O1__] [__O1__] ]
+[[`J T::end()`] [__O1__] [__O1__] [__O1__] [__O1__] ]
+[[`J T::rbegin()`] [__O1__] [__O1__] [__O1__] [__O1__] ]
+[[`J T::rend()`] [__O1__] [__O1__] [__O1__] [__O1__] ]
+[[`J T::lower_bound(const key_type&)`] [__Olgn__] [__Olgn__] [__Olgn__] [__Olgn__] ]
+[[`J T::upper_bound(const key_type&)`] [__Olgn__] [__Olgn__] [__Olgn__] [__Olgn__] ]
+[[`pair<J,J> T::equal_range(const key_type&)`] [__Olgn__] [__Olgn__] [__Olgn__] [__Olgn__] ]
+]
+
+[table
+[[['*Iterator related*]] [] ]
+[[`` iterator T::begin()
+const_iterator T::begin()const``] [Returns an iterator to the first value of the container.] ]
+[[`` iterator T::end()
+const_iterator T::end()const``] [Returns an iterator to a position `end()` after the last value of the container.]]
+[[`` reverse_iterator T::rbegin()
+const_reverse_iterator T::rbegin()const``] [Returns a reverse iterator to the last value of the container.] ]
+[[`` reverse_iterator T::rend()
+const_reverse_iterator T::rend()const``] [Returns a reverse iterator to a position `rend()` before the first value of the container.]]
+[[`` iterator T::lower_bound(const key_type& k)
+const_iterator T::lower_bound(const key_type& key)const``][Returns an iterator that points to the first element `first`, that does not compare less than `key_type key`.
+ `first` can be equal or greater than `key`, or it may overlap `key` for interval containers.]]
+[[`` iterator T::upper_bound(const key_type&)
+const_iterator T::upper_bound(const key_type&)const``] [Returns an iterator that points to the first element `past`, that compares greater than `key_type key`.]]
+[[``
+ pair<iterator,iterator> T::equal_range(const key_type& key)
+pair<const_iterator,const_iterator> T::equal_range(const key_type& key)const
+``
+]
+ [Returns a range `[first, past)` of iterators to all elements of the container
+ that compare neither less than nor greater than `key_type key`.
+ For element containers __icl_set__ and __icl_map__, `equal_range`
+ contains at most one iterator pointing the element equal to `key`,
+ if it exists.
+
+ For interval containers `equal_range` contains iterators to all
+ intervals that overlap interval `key`.
+ ]]
+]
+
+[/
+Functions `begin`, `end`, `rbegin`, `rend` need ['*constant time*].
+Complexity of `lower_bound`, `upper_bound` and `equal_range` are
+['*logarithmic*] in the `iterative_size` of the container.
+]
+
+['*See also . . .*]
+[table
+[]
+[[[link boost_icl.function_reference.element_iteration ['*Element iteration*]] ]]
+]
+['*Back to section . . .*]
+[table
+[]
+[[[link function_synopsis_table ['*Function Synopsis*]] ]]
+[[[link boost_icl.interface ['*Interface*]] ]]
+]
+
+[endsect][/ Iterator related]
+
+