$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Maciek Godek (pstrychuj_at_[hidden])
Date: 2007-07-09 15:35:15
Wouldn't it be better if boost::lambda::bind was named
boost::lambda::call (or boost::lambda::eval, to make it more lispish),
in order to:
-avoid the confusion and potential overlap with boost::bind
-make the name more sensible within lambda expressions, especially
when "binding" nullary functions, ie.
int six() { return 6; }
if_(call(six) == 6) [ ... ]
IMHO looks better than
if_(bind(six) == 6) [ ... ]
Yours,
Chuj