Commit f4a65b63 authored by Davis King's avatar Davis King

updated the docs

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402819
parent 9e7e39a5
......@@ -12,9 +12,13 @@
Many of these containers were inspired by the RESOLVE/C++ course sequence at Ohio State. As such, most of
the objects do not support copying in any form, only swapping is allowed. That is, when objects
are added or removed from any of these containers they are swapped in and out, not copied.
</p>
<p>
This allows you to do things like have containers of containers of containers without encountering the
overhead of the massive copying that would likely result if you did the same thing with the STL.
overhead of the massive copying that would likely result if you did the same thing with the STL.
It also means you can store objects that are not copyable inside these containers, which is not
something you can do with the STL.
</p>
<p>
......
......@@ -16,6 +16,9 @@ New Stuff:
- Added the type_safe_union object
Non-Backwards Compatible Changes:
- Renamed the array::expand() function to array::resize() since it does
basically the same thing as std::vector::resize() and more than one
user has told me they found the name "expand" to be confusing.
Bug fixes:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment