2004-01-29 05:55:26 +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" / >
2005-05-20 15:32:55 +00:00
< meta name = "generator" content = "Docutils 0.3.8: http://docutils.sourceforge.net/" / >
2004-01-29 05:55:26 +00:00
< title > Iterator Traits< / title >
< meta name = "author" content = "David Abrahams" / >
< meta name = "organization" content = "Boost Consulting" / >
2004-11-02 14:31:27 +00:00
< meta name = "date" content = "2004-11-01" / >
< meta name = "copyright" content = "Copyright David Abrahams 2004." / >
2004-01-29 05:55:26 +00:00
< link rel = "stylesheet" href = "default.css" type = "text/css" / >
< / head >
< body >
2005-05-20 15:32:55 +00:00
< div class = "document" id = "iterator-traits" >
2004-01-29 05:55:26 +00:00
< h1 class = "title" > Iterator Traits< / h1 >
< table class = "docinfo" frame = "void" rules = "none" >
< col class = "docinfo-name" / >
< col class = "docinfo-content" / >
< tbody valign = "top" >
< tr > < th class = "docinfo-name" > Author:< / th >
< td > David Abrahams< / td > < / tr >
< tr > < th class = "docinfo-name" > Contact:< / th >
< td > < a class = "first last reference" href = "mailto:dave@boost-consulting.com" > dave@ boost-consulting.com< / a > < / td > < / tr >
< tr > < th class = "docinfo-name" > Organization:< / th >
< td > < a class = "first last reference" href = "http://www.boost-consulting.com" > Boost Consulting< / a > < / td > < / tr >
< tr > < th class = "docinfo-name" > Date:< / th >
2004-11-02 14:31:27 +00:00
< td > 2004-11-01< / td > < / tr >
2004-01-29 05:55:26 +00:00
< tr > < th class = "docinfo-name" > Copyright:< / th >
2004-11-02 14:31:27 +00:00
< td > Copyright David Abrahams 2004.< / td > < / tr >
2004-01-29 05:55:26 +00:00
< / tbody >
< / table >
2005-05-20 15:32:55 +00:00
< table class = "docutils field-list" frame = "void" rules = "none" >
2004-01-29 05:55:26 +00:00
< col class = "field-name" / >
< col class = "field-body" / >
< tbody valign = "top" >
2005-05-20 15:32:55 +00:00
< tr class = "field" > < th class = "field-name" > abstract:< / th > < td class = "field-body" > Header < tt class = "docutils literal" > < span class = "pre" > < boost/iterator/iterator_traits.hpp> < / span > < / tt > provides
2004-01-29 05:55:26 +00:00
the ability to access an iterator's associated types using
2005-08-12 13:02:37 +00:00
MPL-compatible < a class = "reference" href = "../../mpl/doc/refmanual/metafunction.html" > metafunctions< / a > .< / td >
2004-01-29 05:55:26 +00:00
< / tr >
< / tbody >
< / table >
< div class = "section" id = "overview" >
< h1 > < a name = "overview" > Overview< / a > < / h1 >
2005-05-20 15:32:55 +00:00
< p > < tt class = "docutils literal" > < span class = "pre" > std::iterator_traits< / span > < / tt > provides access to five associated types
of any iterator: its < tt class = "docutils literal" > < span class = "pre" > value_type< / span > < / tt > , < tt class = "docutils literal" > < span class = "pre" > reference< / span > < / tt > , < tt class = "docutils literal" > < span class = "pre" > pointer< / span > < / tt > ,
< tt class = "docutils literal" > < span class = "pre" > iterator_category< / span > < / tt > , and < tt class = "docutils literal" > < span class = "pre" > difference_type< / span > < / tt > . Unfortunately,
2004-01-29 05:55:26 +00:00
such a " multi-valued" traits template can be difficult to use in a
2005-05-20 15:32:55 +00:00
metaprogramming context. < tt class = "docutils literal" > < span class = "pre" > < boost/iterator/iterator_traits.hpp> < / span > < / tt >
2005-08-12 13:02:37 +00:00
provides access to these types using a standard < a class = "reference" href = "../../mpl/doc/refmanual/metafunction.html" > metafunctions< / a > .< / p >
2004-01-29 05:55:26 +00:00
< / div >
< div class = "section" id = "summary" >
< h1 > < a name = "summary" > Summary< / a > < / h1 >
2005-05-20 15:32:55 +00:00
< p > Header < tt class = "docutils literal" > < span class = "pre" > < boost/iterator/iterator_traits.hpp> < / span > < / tt > :< / p >
2004-01-29 05:55:26 +00:00
< pre class = "literal-block" >
template < class Iterator>
struct iterator_value
{
typedef typename
std::iterator_traits< Iterator> ::value_type
type;
};
template < class Iterator>
struct iterator_reference
{
typedef typename
std::iterator_traits< Iterator> ::reference
type;
};
template < class Iterator>
struct iterator_pointer
{
typedef typename
std::iterator_traits< Iterator> ::pointer
type;
};
template < class Iterator>
struct iterator_difference
{
typedef typename
detail::iterator_traits< Iterator> ::difference_type
type;
};
template < class Iterator>
struct iterator_category
{
typedef typename
detail::iterator_traits< Iterator> ::iterator_category
type;
};
< / pre >
< / div >
< div class = "section" id = "broken-compiler-notes" >
< h1 > < a name = "broken-compiler-notes" > Broken Compiler Notes< / a > < / h1 >
< p > Because of workarounds in Boost, you may find that these
2005-08-12 13:02:37 +00:00
< a class = "reference" href = "../../mpl/doc/refmanual/metafunction.html" > metafunctions< / a > actually work better than the facilities provided by
2004-01-29 05:55:26 +00:00
your compiler's standard library.< / p >
< p > On compilers that don't support partial specialization, such as
Microsoft Visual C++ 6.0 or 7.0, you may need to manually invoke
2005-08-12 13:02:37 +00:00
< a class = "reference" href = "../../../doc/html/boost_typetraits/category.html#boost_typetraits.transform" > BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION< / a > on the
2005-05-20 15:32:55 +00:00
< tt class = "docutils literal" > < span class = "pre" > value_type< / span > < / tt > of pointers that are passed to these metafunctions.< / p >
2004-01-29 05:55:26 +00:00
< p > Because of bugs in the implementation of GCC-2.9x, the name of
2005-05-20 15:32:55 +00:00
< tt class = "docutils literal" > < span class = "pre" > iterator_category< / span > < / tt > is changed to < tt class = "docutils literal" > < span class = "pre" > iterator_category_< / span > < / tt > on that
compiler. A macro, < tt class = "docutils literal" > < span class = "pre" > BOOST_ITERATOR_CATEGORY< / span > < / tt > , that expands to
either < tt class = "docutils literal" > < span class = "pre" > iterator_category< / span > < / tt > or < tt class = "docutils literal" > < span class = "pre" > iterator_category_< / span > < / tt > , as
2004-01-29 05:55:26 +00:00
appropriate to the platform, is provided for portability.< / p >
< / div >
< / div >
2005-05-20 15:32:55 +00:00
< hr class = "docutils footer" / >
2004-01-29 05:55:26 +00:00
< div class = "footer" >
< a class = "reference" href = "iterator_traits.rst" > View document source< / a > .
Generated by < a class = "reference" href = "http://docutils.sourceforge.net/" > Docutils< / a > from < a class = "reference" href = "http://docutils.sourceforge.net/rst.html" > reStructuredText< / a > source.
< / div >
< / body >
< / html >