$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Peter Dimov (pdimov_at_[hidden])
Date: 2005-09-22 13:15:56
Seb Martel wrote:
> What about:
>
> std::transform(
> x.begin(), x.end(), std::back_inserter(y),
> boost::bind( &foo, _1 ) );
Or even
std::transform( x.begin(), x.end(), std::back_inserter(y), foo );
:-)