FastLED
3.9.15
Loading...
Searching...
No Matches
◆
operator<()
template<typename
Key
, typename Compare = less<Key>, typename Allocator = allocator<Key>>
bool
fl::MultiSetTree
<
Key
, Compare, Allocator >::operator<
(
const
MultiSetTree
<
Key
, Compare, Allocator > &
other
)
const
inline
Definition at line
373
of file
multi_set.h
.
373
{
374
for
(
auto
it1
=
begin
(),
it2
=
other
.
begin
();
it1
!=
end
() &&
it2
!=
other
.
end
(); ++
it1
, ++
it2
) {
375
if
(*
it1
< *
it2
)
return
true
;
376
if
(*
it2
< *
it1
)
return
false
;
377
}
378
return
size
() <
other
.
size
();
379
}
fl::MultiSetTree::end
iterator end()
Definition
multi_set.h:192
fl::MultiSetTree::size
fl::size size() const
Definition
multi_set.h:204
fl::MultiSetTree::begin
iterator begin()
Definition
multi_set.h:189
fl::MultiSetTree
Definition
multi_set.h:20
fl
MultiSetTree
Generated on Tue Jun 16 2026 00:07:05 for FastLED by
1.13.2