Is there a small functor in the C++ standard or in Boost that wraps around another functor, but dereferences a pointer before it calls that functor?
I’m thinking of something like this:
template<class F>
struct DerefCmp {
template<class T>
bool operator()(T* v) const {
return F(*v);
}
};
I’d use it in a container of pointers, for example, where I want to compare by value:
std::set<int*, DerefCmp< std::equal<int> > > s;
I am not aware of any function object in the C++ Standard Library or in Boost that does this (that’s not to say there isn’t one; I am not familiar with everything in the Boost libraries :-P).
However, writing your own is rather straightforward. Consider the following:
Usage example:
Note that it is ill-advised to have a container of raw pointers if the pointers are to dynamically allocated objects and the container has ownership of the pointed-to objects; it isn’t exception-safe to do this. That said, this predicate adapter should work just as well for smart pointers, iterators, or any other type that supports dereferencing.