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

◆ reset() [1/2]

template<uint32_t N>
void fl::BitsetFixed< N >::reset ( )
inlinenoexcept

Resets all bits to zero.

Definition at line 52 of file bitset.h.

52 {
53 for (uint32_t i = 0; i < block_count; ++i) {
54 _blocks[i] = 0;
55 }
56 }
static constexpr uint32_t block_count
Definition bitset.h:24
block_type _blocks[block_count]
Definition bitset.h:29
A simple fixed-size Bitset implementation similar to std::Bitset.
Definition bitset.h:21

References _blocks, and block_count.