| 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 { |