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

◆ operator==()

template<typename Key, typename Value, typename Less = fl::DefaultLess<Key>>
bool fl::SortedHeapMap< Key, Value, Less >::operator== ( const SortedHeapMap< Key, Value, Less > & other) const
inline

Definition at line 322 of file map.h.

322 {
323 if (size() != other.size()) {
324 return false;
325 }
327 it != end(); ++it, ++other_it) {
328 if (it->first != other_it->first || it->second != other_it->second) {
329 return false;
330 }
331 }
332 return true;
333 }
iterator begin()
Definition map.h:346
iterator end()
Definition map.h:347
size_t size() const
Definition map.h:339
SortedHeapVector< Pair, PairLess >::const_iterator const_iterator
Definition map.h:279