$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Tanton Gibbs (thgibbs_at_[hidden])
Date: 2005-04-24 17:45:20
With regards to TR2 and Boost, I would like to see a string class that allows a user specified length. For instance
boost::fixed_string<100> fs; // synonymn for boost::fixed_basic_string<char, 100>
Whether the rest of the class was monolithic like std::string or broken out as proposed by Herb Sutter, I wouldn't care. I often come across uses for this where I don't want to dynamically allocate memory, but I also want the functionality of the string class.
Tanton