| 586 | } |
| 587 | |
| 588 | bool all() const FL_NOEXCEPT { |
| 589 | if (_storage.template is<fixed_bitset>()) { |
| 590 | return _storage.template ptr<fixed_bitset>()->all(); |
| 591 | } else { |
| 592 | return _storage.template ptr<bitset_dynamic>()->all(); |
| 593 | } |
| 594 | } |
| 595 | |
| 596 | /// Size of the Bitset (number of bits). |
| 597 | fl::u32 size() const FL_NOEXCEPT { |