Friday, February 25, 2011, 4:27:01 PM, you wrote:
> Personally I think stl::vector is a horribly designed mess.
> [...] It has no simple way of doing operations
> like finding a matching element or inserting after
> an element without using using
> iterators.
std::vector::iterator spot = std::fin
Personally I think stl::vector is a horribly designed mess. It pulls in
massive amounts
of garbage in the form of iterators. It has no simple way of doing
operations
like finding a matching element or inserting after an element without
using using
iterators. ::clear() doesn't release storag
I would like to suggest removing DynArray and replacing it where appropriate
with std::vector. This would IMHO have the advantages of using a standard
container which, frankly, is likely superior in performance, with a better API,
much better documentation, lower maintenance, and more familiar t