alternative Standard Libary  0.29.8
std::internal::compare_func< TPair, TFunctor > Template-Strukturreferenz

#include <sorted_vector.hpp>

Öffentliche Methoden

bool operator() (const TPair &lhs, const TPair &rhs) const
 
bool operator() (const TPair &lhs, const typename TPair::first_type &rhs) const
 
bool operator() (const typename TPair::first_type &lhs, const TPair &rhs) const
 

Ausführliche Beschreibung

template<class TPair, class TFunctor>
struct std::internal::compare_func< TPair, TFunctor >

Dokumentation der Elementfunktionen

◆ operator()() [1/3]

template<class TPair, class TFunctor>
bool std::internal::compare_func< TPair, TFunctor >::operator() ( const TPair &  lhs,
const TPair &  rhs 
) const
inline
48  {
49  return TFunctor()(lhs.first, rhs.first);
50  }

◆ operator()() [2/3]

template<class TPair, class TFunctor>
bool std::internal::compare_func< TPair, TFunctor >::operator() ( const TPair &  lhs,
const typename TPair::first_type &  rhs 
) const
inline
52  {
53  return TFunctor()(lhs.first, rhs);
54  }

◆ operator()() [3/3]

template<class TPair, class TFunctor>
bool std::internal::compare_func< TPair, TFunctor >::operator() ( const typename TPair::first_type &  lhs,
const TPair &  rhs 
) const
inline
56  {
57  return TFunctor()(lhs, rhs.first);
58  }

Die Dokumentation für diese Struktur wurde erzeugt aufgrund der Datei: