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
}
326
for
(
const_iterator
it
=
begin
(),
other_it
=
other
.
begin
();
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
}
fl::SortedHeapMap::begin
iterator begin()
Definition
map.h:346
fl::SortedHeapMap::end
iterator end()
Definition
map.h:347
fl::SortedHeapMap::size
size_t size() const
Definition
map.h:339
fl::SortedHeapMap::const_iterator
SortedHeapVector< Pair, PairLess >::const_iterator const_iterator
Definition
map.h:279
fl::SortedHeapMap
Definition
map.h:257
fl
SortedHeapMap
Generated on Fri Apr 18 2025 03:39:32 for FastLED by
1.13.2