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

◆ operator()() [1/2]

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

Function call operator that performs the less-than comparison.

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

Definition at line 23 of file functional.h.

23 {
24 return lhs < rhs;
25 }
Binary function object that returns whether the first argument is less than the second.
Definition functional.h:15