$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Peter Dimov (pdimov_at_[hidden])
Date: 2002-07-30 06:15:00
From: "Thomas Wenisch" <twenisch_at_[hidden]>
[...]
> How can I get the lambda library to invoke each function in the
> vector? More generally, if the functions were function<void, T>, how
> could I bind the T parameter in the lambda expression?
for_each(first, last, bind(_1));
for_each(first, last, bind(_1, t));