Queries.
| 570 | |
| 571 | /// Queries. |
| 572 | bool any() const FL_NOEXCEPT { |
| 573 | if (_storage.template is<fixed_bitset>()) { |
| 574 | return _storage.template ptr<fixed_bitset>()->any(); |
| 575 | } else { |
| 576 | return _storage.template ptr<bitset_dynamic>()->any(); |
| 577 | } |
| 578 | } |
| 579 | |
| 580 | bool none() const FL_NOEXCEPT { |
| 581 | if (_storage.template is<fixed_bitset>()) { |