Hi,

I am currently porting c++ code from STL to QTL (std::vector to QVector). QTL claims to be largely compatible to the STL - and it is indeed.
The one STL method we frequently use and that the QTL doesnt have is

erase(...)

Instead the QTL version is called

remove(...)


is there any reason behind that?