9 PL_ALWAYS_INLINE
bool Less(
const T& a,
const T& b)
const
16 PL_ALWAYS_INLINE
bool Less(
const T& a,
const U& b)
const
23 PL_ALWAYS_INLINE
bool Less(
const U& a,
const T& b)
const
29 PL_ALWAYS_INLINE
bool Equal(
const T& a,
const T& b)
const
36 PL_ALWAYS_INLINE
bool Equal(
const T& a,
const U& b)
const
43 PL_ALWAYS_INLINE
bool Equal(
const U& a,
const T& b)
const
A comparer object is used in sorting algorithms to compare to objects of the same type.
Definition Comparer.h:7
PL_ALWAYS_INLINE bool Less(const U &a, const T &b) const
Returns true if a is less than b.
Definition Comparer.h:23
PL_ALWAYS_INLINE bool Equal(const T &a, const U &b) const
Returns true if a is equal to b.
Definition Comparer.h:36
PL_ALWAYS_INLINE bool Equal(const U &a, const T &b) const
Returns true if a is equal to b.
Definition Comparer.h:43
PL_ALWAYS_INLINE bool Less(const T &a, const U &b) const
Returns true if a is less than b.
Definition Comparer.h:16
PL_ALWAYS_INLINE bool Less(const T &a, const T &b) const
Returns true if a is less than b.
Definition Comparer.h:9
PL_ALWAYS_INLINE bool Equal(const T &a, const T &b) const
Returns true if a is equal to b.
Definition Comparer.h:29