On Fri, Sep 26, 2008 at 8:28 AM, Tim Kroeger <[EMAIL PROTECTED]> wrote: > Dear Roy, > > On Fri, 26 Sep 2008, Roy Stogner wrote: > >>> The only big catch that you need to worry about with that conversion >>> is vector resizing >> >> Whoops! There's actually one more catch, if you have an expansive >> definition of "C array". To save storage space, there's a trick in >> the standard: std::vector<bool> isn't really a std::vector, it's a >> data structure that encapsulates some bit twiddling to carry the >> requested information. > > Thank you very much for you reply. Where on the internet can I find > that document that says all there things?
I recommend SGI's STL pages: http://www.sgi.com/tech/stl/table_of_contents.html and the comp.lang.c++.moderated newsgroup. cplusplus.com and the C++ FAQ Lite (http://www.parashift.com/c++-faq-lite/) are also very good. These sites are frequently easier to read than passages of the C++ standard, but if that's what you're after, you can always go there: http://www.open-std.org/jtc1/sc22/wg21/. -- John ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Libmesh-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/libmesh-users
