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

◆ operator==() [4/14]

template<typename Key, typename Less>
bool fl::operator== ( const flat_set< Key, Less > & lhs,
const flat_set< Key, Less > & rhs )

Definition at line 326 of file flat_set.h.

327 {
328 return lhs.size() == rhs.size() &&
329 fl::equal(lhs.begin(), lhs.end(), rhs.begin());
330}
iterator begin()
Definition flat_set.h:75
iterator end()
Definition flat_set.h:76
size_type size() const
Definition flat_set.h:88
bool equal(Iterator1 first1, Iterator1 last1, Iterator2 first2) FL_NOEXCEPT
Definition algorithm.h:96

References fl::flat_set< Key, Less >::begin(), fl::flat_set< Key, Less >::end(), equal(), and fl::flat_set< Key, Less >::size().

+ Here is the call graph for this function: