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

◆ bitset_dynamic() [3/4]

fl::bitset_dynamic::bitset_dynamic ( const bitset_dynamic & other)
inline

Definition at line 42 of file bitset_dynamic.h.

42 {
43 if (other._size > 0) {
44 resize(other._size);
45 fl::memcpy(_blocks.get(), other._blocks.get(), _block_count * sizeof(block_type));
46 }
47 }
FL_DISABLE_WARNING_POP FL_DISABLE_WARNING_PUSH FL_DISABLE_WARNING_NULL_DEREFERENCE void resize(fl::u32 new_size) FL_NOEXCEPT
fl::unique_ptr< block_type[]> _blocks
void * memcpy(void *dest, const void *src, size_t n) FL_NOEXCEPT

References bitset_dynamic(), _block_count, _blocks, FL_NOEXCEPT, fl::memcpy(), and resize().

+ Here is the call graph for this function: