Convert bitset to string representation
| 604 | |
| 605 | /// Convert bitset to string representation |
| 606 | void to_string(string* dst) const FL_NOEXCEPT { |
| 607 | if (_storage.template is<fixed_bitset>()) { |
| 608 | _storage.template ptr<fixed_bitset>()->to_string(dst); |
| 609 | } else { |
| 610 | _storage.template ptr<bitset_dynamic>()->to_string(dst); |
| 611 | } |
| 612 | } |
| 613 | |
| 614 | /// Finds the first bit that matches the test value. |
| 615 | /// Returns the index of the first matching bit, or -1 if none found. |