c++ - IBM Rhapsody containers, need algorithms similar to STL -


i using ibm rhapsody in c++ , need perform generic algorithm on rhapsody containers omcollection, omlist or ommap similar stl's for_each, copy, remove, count_if, etc etc etc. there custom library or package perform this, or there adapter allow me apply stl generics rhapsody container ? want able write along lines of:

omlist<omstring> mystringlist; for_each(mystringlist.begin(),mystringlist.end(),myfoid);

without having use stl containers in rhapsody.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -