Size of the Bitset (number of bits).
| 595 | |
| 596 | /// Size of the Bitset (number of bits). |
| 597 | fl::u32 size() const FL_NOEXCEPT { |
| 598 | if (_storage.template is<fixed_bitset>()) { |
| 599 | return N; |
| 600 | } else { |
| 601 | return _storage.template ptr<bitset_dynamic>()->size(); |
| 602 | } |
| 603 | } |
| 604 | |
| 605 | /// Convert bitset to string representation |
| 606 | void to_string(string* dst) const FL_NOEXCEPT { |