From 351d4ecb150f16728e8533d10cbaed135a59b769 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Fri, 26 Jul 2002 00:03:24 +0000 Subject: [PATCH] Document policies() member of iterator_adaptor [SVN r14613] --- iterator_adaptors.htm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/iterator_adaptors.htm b/iterator_adaptors.htm index d35b19b..c1c4e4a 100644 --- a/iterator_adaptors.htm +++ b/iterator_adaptors.htm @@ -530,6 +530,15 @@ struct default_iterator_policies Return a reference to the base object. This is to give the policies object access to the base object. See above for policies iterator_adaptor interaction.[8] + + + const Policies& policies() const; +

+ Return a const reference to the policies object. + + Policies& policies(); +

+ Return a reference to the policies object.

Example