MCPcopy Create free account
hub / github.com/FastLED/FastLED / operator~

Method operator~

src/fl/stl/bitset.h:627–631  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

625
626 /// Bitwise operators
627 friend bitset_inlined operator~(const bitset_inlined &bs) FL_NOEXCEPT {
628 bitset_inlined result = bs;
629 result.flip();
630 return result;
631 }
632
633 friend bitset_inlined operator&(const bitset_inlined &lhs,
634 const bitset_inlined &rhs) FL_NOEXCEPT {

Callers

nothing calls this directly

Calls 1

flipMethod · 0.80

Tested by

no test coverage detected