FastLED 3.9.15
Loading...
Searching...
No Matches

◆ operator()() [1/2]

bool fl::greater< void >::operator() ( const void & lhs,
const void & rhs ) const
inlineconstexpr

Function call operator that performs the greater-than comparison.

Parameters
lhsLeft-hand side argument
rhsRight-hand side argument
Returns
true if lhs > rhs, false otherwise

Definition at line 68 of file utility.h.

68 {
69 return rhs < lhs; // Equivalent to lhs > rhs, works with types that only have operator<
70 }
Binary function object that returns whether the first argument is greater than the second.
Definition utility.h:60