FastLED 3.9.15
|
Specialization of less for void, allowing for transparent comparisons.
This specialization allows the functor to be used with different types as long as they support the less-than operator.
Definition at line 34 of file functional.h.
#include <functional.h>
Public Member Functions | |
constexpr bool | operator() (const void &lhs, const void &rhs) const |
Function call operator that performs the less-than comparison. | |
template<typename T, typename U> | |
constexpr auto | operator() (T &&lhs, U &&rhs) const -> decltype(fl::forward< T >(lhs)< fl::forward< U >(rhs)) |
Function call operator that performs the less-than comparison. | |