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 22 of file utility.h.

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