|
FastLED 3.9.15
|
Binary function object that returns whether the first argument is greater than the second.
This functor mimics std::greater from the C++ standard library. Implemented using operator< for compatibility with types that only define operator<.
| T | Type of the arguments being compared |
#include <utility.h>
Inheritance diagram for fl::greater< T >:Public Member Functions | |
| constexpr bool | operator() (const T &lhs, const T &rhs) const FL_NOEXCEPT |
| Function call operator that performs the greater-than comparison. | |