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

Method to_string

src/fl/stl/bitset.h:606–612  ·  view source on GitHub ↗

Convert bitset to string representation

Source from the content-addressed store, hash-verified

604
605 /// Convert bitset to string representation
606 void to_string(string* dst) const FL_NOEXCEPT {
607 if (_storage.template is<fixed_bitset>()) {
608 _storage.template ptr<fixed_bitset>()->to_string(dst);
609 } else {
610 _storage.template ptr<bitset_dynamic>()->to_string(dst);
611 }
612 }
613
614 /// Finds the first bit that matches the test value.
615 /// Returns the index of the first matching bit, or -1 if none found.

Callers

nothing calls this directly

Calls 1

to_stringMethod · 0.45

Tested by

no test coverage detected