mirror of
https://github.com/boostorg/utility.git
synced 2025-07-30 04:47:30 +02:00
changed title
[SVN r10999]
This commit is contained in:
@ -87,7 +87,7 @@
|
|||||||
|
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
\title{Mass Producing Iterators}
|
\title{Policy Adaptors in the Boost Iterator Adaptor Library}
|
||||||
|
|
||||||
\author{David Abrahams$^\dag$ and Jeremy Siek$^\ddag$\thanks{This work
|
\author{David Abrahams$^\dag$ and Jeremy Siek$^\ddag$\thanks{This work
|
||||||
was partially supported by NSF grant ACI-9982205.} \\
|
was partially supported by NSF grant ACI-9982205.} \\
|
||||||
@ -701,11 +701,11 @@ problems discussed in the introduction were solved.
|
|||||||
\begin{verbatim}
|
\begin{verbatim}
|
||||||
namespace boost {
|
namespace boost {
|
||||||
template <class Base, class Policies,
|
template <class Base, class Policies,
|
||||||
class Value = default_argument,
|
class Value = default_argument,
|
||||||
class Reference = default_argument,
|
class Reference = default_argument,
|
||||||
class Pointer = default_argument,
|
class Pointer = default_argument,
|
||||||
class Category = default_argument,
|
class Category = default_argument,
|
||||||
class Distance = default_argument>
|
class Distance = default_argument>
|
||||||
struct iterator_adaptor {
|
struct iterator_adaptor {
|
||||||
// Deduce iterator associated types (value_type, etc.) from the
|
// Deduce iterator associated types (value_type, etc.) from the
|
||||||
// named template parameters, and resolve any defaults.
|
// named template parameters, and resolve any defaults.
|
||||||
@ -889,7 +889,7 @@ respectively), so we can treat this as an associative list.
|
|||||||
{\footnotesize
|
{\footnotesize
|
||||||
\begin{verbatim}
|
\begin{verbatim}
|
||||||
typedef pair<Param1, pair<Param2, pair<Param3, pair<Param4,
|
typedef pair<Param1, pair<Param2, pair<Param3, pair<Param4,
|
||||||
pair<Param5, list_end_type> > > > > NamedParamList;
|
pair<Param5, list_end_type> > > > > NamedParamList;
|
||||||
\end{verbatim}
|
\end{verbatim}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user