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

◆ operator==() [3/14]

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

Definition at line 512 of file flat_map.h.

513 {
514 return lhs.size() == rhs.size() &&
515 fl::equal(lhs.begin(), lhs.end(), rhs.begin());
516}
size_type size() const FL_NOEXCEPT
Definition flat_map.h:96
iterator begin() FL_NOEXCEPT
Definition flat_map.h:83
iterator end() FL_NOEXCEPT
Definition flat_map.h:84
bool equal(Iterator1 first1, Iterator1 last1, Iterator2 first2) FL_NOEXCEPT
Definition algorithm.h:96

References equal(), and FL_NOEXCEPT.

+ Here is the call graph for this function: