MCPcopy Create free account
hub / github.com/FastLED/FastLED / assign

Method assign

src/fl/stl/bitset.h:427–434  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

425 }
426
427 void assign(fl::size n, bool value) FL_NOEXCEPT {
428 resize(n);
429 if (_storage.template is<fixed_bitset>()) {
430 _storage.template ptr<fixed_bitset>()->assign(n, value);
431 } else {
432 _storage.template ptr<bitset_dynamic>()->assign(n, value);
433 }
434 }
435
436
437

Callers

nothing calls this directly

Calls 2

resizeFunction · 0.70
assignMethod · 0.45

Tested by

no test coverage detected