diff --git a/doc/utility_class.html b/doc/utility_class.html index 5353b57..22d355a 100644 --- a/doc/utility_class.html +++ b/doc/utility_class.html @@ -243,18 +243,20 @@ non-const iterators from the same container.

Sequence copy_range( const ForwardRange& r ); -

- Constructs a new sequence of the specified type from the elements - in the given range. +
+ Returns Sequence( begin(r), end(r) );

Sequence transform_range( const ForwardRange& r, Func func ); -

- Constructs a new sequence from the elements in the range, -transformed by a function. +
+Effects
+Sequence seq;
+std::transform( begin(r), end(r), std::back_inserter(seq), func ); +
+return seq;