Hacker News new | past | comments | ask | show | jobs | submit login

> Well, you do support only vector containers

Yes.

> Your name "array" clashes with the C++ array

In C they are called arrays.

> And your array is unsafe sized, as last is the only size provision, even unsafer than C++ with its unsafe iterators.

Can you explain more? C++ <algorithm> is intended to be used for C pointers as well. The iterator concept is an abstraction of pointer.

> You can only replace insitu

I'm not sure what you mean. The replace/remove/unique work just like the C++ versions. The STL recognizes there are cases when you want to work in-place, and others when you want to use a separate buffer. That's why it provides multiple versions.

> the spirit of the STL algorithms is to allocate, not overwrite.

I don't believe this is true. It's designed to separate memory allocation concerns from the algorithm. That's why a lot of them require you to provide a buffer satisfying some requirements.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: