diff --git a/doc/utility_class.html b/doc/utility_class.html index b2504c9..da57e08 100644 --- a/doc/utility_class.html +++ b/doc/utility_class.html @@ -230,14 +230,14 @@ non-const iterators from the same container.
-bool operator==( const Range1& l, const Range2& r );
+bool operator==( const ForwardRange1& l, const ForwardRange2& r );
Returns size(l) != size(r) ? false : std::equal( begin(l), end(l), begin(r) );
-bool operator!=( const Range1& l, const Range2& r );
+bool operator!=( const ForwardRange1& l, const ForwardRange2& r );
Returns !( l == r );
-bool operator<( const Range1& l, const Range2& r );
+bool operator<( const ForwardRange1& l, const ForwardRange2& r );
Returns std::lexicographical_compare( begin(l), end(l), begin(r), end(r) );