$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: DEAN STURTEVANT (dean_at_[hidden])
Date: 2001-01-09 18:27:54
Interesting note: If you look in Nicolai Josuttis' book (The C++
Standard Library, Addison-Wesley 1999) p. 380, you'll find the
statement
remove_copy_if() is a combination of copy() and remove_if(). It
removes each element in the source range [beg,end) ...
which is certainly not the definition in the standard!
- Dean