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

◆ reset() [1/2]

template<uint32_t N = 256>
void fl::BitsetInlined< N >::reset ( )
inlinenoexcept

Resets all bits to zero.

Definition at line 273 of file bitset.h.

273 {
274 if (_storage.template is<fixed_bitset>()) {
275 _storage.template ptr<fixed_bitset>()->reset();
276 } else {
277 _storage.template ptr<bitset_dynamic>()->reset();
278 }
279 }
void reset() noexcept
Resets all bits to zero.
Definition bitset.h:273
A Bitset implementation with inline storage that can grow if needed.
Definition bitset.h:225

Referenced by operator&.

+ Here is the caller graph for this function: