$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Dmitriy Chumack (saint.d.a_at_[hidden])
Date: 2007-03-14 03:11:59
hi *
In the documentation for lambda library from boost_1_33_1, in section
"Getting Started"->"Conventions used in this document" said that in
all examples implicitly used such declarations:
using namespace std;
using namespace boost::lambda;
So the following will work:
for_each(a.begin(), a.end(), std::cout << _1 << ' ');
But how do I have to rewrite the above line of code to have it
compiled without "using namespace boost::lambda;" before it?
Thanks in advance.