2019-05-07 12:31:34 +00:00
|
|
|
#ifndef LLARP_UTIL_COMPARE_PTR_HPP
|
|
|
|
#define LLARP_UTIL_COMPARE_PTR_HPP
|
|
|
|
#include <functional>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
/// type for comparing smart pointer's managed values
|
2019-05-08 15:42:38 +00:00
|
|
|
template < typename Ptr_t, typename Compare = std::less<> >
|
2019-05-07 12:31:34 +00:00
|
|
|
struct ComparePtr
|
|
|
|
{
|
|
|
|
bool
|
|
|
|
operator()(const Ptr_t& left, const Ptr_t& right) const
|
|
|
|
{
|
|
|
|
if(left && right)
|
|
|
|
return Compare()(*left, *right);
|
2019-05-08 15:09:57 +00:00
|
|
|
else
|
|
|
|
return Compare()(left, right);
|
2019-05-07 12:31:34 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|