Re: Vector container unification

2011-02-25 Thread Alan M. Carroll
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

Re: Vector container unification

2011-02-25 Thread John Plevyak
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

Vector container unification

2011-02-25 Thread Alan M. Carroll
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