diff --git a/doc/utility_class.html b/doc/utility_class.html
index 0ae3a70..e27e948 100644
--- a/doc/utility_class.html
+++ b/doc/utility_class.html
@@ -111,14 +111,16 @@ corresponding const_iterator
is.
bool operator<( const ForwardRange1& l, const ForwardRange2& r );
Returns std::lexicographical_compare( begin(l), end(l), begin(r), end(r) );
+
++iterator_range make_iterator_range( Range& r, + typename range_difference<Range>::type advance_begin, + typename range_difference<Range>::type advance_end ); ++
+ Effects: ++iterator new_begin = begin( r ), +iterator new_end = end( r ); +std::advance( new_begin, advance_begin ); +std::advance( new_end, advance_end ); +return make_iterator_range( new_begin, new_end ); ++
Sequence copy_range( const ForwardRange& r );
@@ -299,15 +331,23 @@ class can propagate constness since it knows what a corresponding
iterator_range
};
} // namespace 'boost'