Has there been any consderation given to the use of named parameters
with boost::format?

use boost::format;

std::cout << format ("%first-name% %last-name%")
    % format::arg("first-name", "Alan")
    % format::arg("last-name", "Gutierrez")
    << std::endl;

It would not be terribly difficult to implement.

-- 
Alan Gutierrez - [EMAIL PROTECTED]

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Reply via email to