diff --git a/doc/facade-and-adaptor.html b/doc/facade-and-adaptor.html index 32716a4..1521731 100755 --- a/doc/facade-and-adaptor.html +++ b/doc/facade-and-adaptor.html @@ -1647,6 +1647,7 @@ base iterator, passes the result of this to the function object, and then returns the result.
template <class UnaryFunction, class Iterator, @@ -1660,10 +1661,11 @@ public: transform_iterator(); transform_iterator(Iterator const& x, UnaryFunction f); - template<class OtherIterator, class R2, class V2> + template<class F2, class I2, class R2, class V2> transform_iterator( - transform_iterator<UnaryFunction, OtherIterator, R2, V2> const& t - , typename enable_if_convertible<OtherIterator, Iterator>::type* = 0 // exposition + transform_iterator<F2, I2, R2, V2> const& t + , typename enable_if_convertible<I2, Iterator>::type* = 0 // exposition + , typename enable_if_convertible<F2, UnaryFunction>::type* = 0 // exposition ); UnaryFunction functor() const; @@ -2132,7 +2134,7 @@ LocalWords: OtherIncrementable Coplien -->