| 578 | } |
| 579 | |
| 580 | bool none() const FL_NOEXCEPT { |
| 581 | if (_storage.template is<fixed_bitset>()) { |
| 582 | return _storage.template ptr<fixed_bitset>()->none(); |
| 583 | } else { |
| 584 | return _storage.template ptr<bitset_dynamic>()->none(); |
| 585 | } |
| 586 | } |
| 587 | |
| 588 | bool all() const FL_NOEXCEPT { |
| 589 | if (_storage.template is<fixed_bitset>()) { |