Constructs a Bitset with all bits reset.
| 394 | |
| 395 | /// Constructs a Bitset with all bits reset. |
| 396 | bitset_inlined() FL_NOEXCEPT : _storage(fixed_bitset()) {} |
| 397 | bitset_inlined(fl::size size) FL_NOEXCEPT : _storage(fixed_bitset()) { |
| 398 | if (size > N) { |
| 399 | _storage = bitset_dynamic(size); |
nothing calls this directly
no test coverage detected