C++17 only: similar to Decode(), but with specified false positive probability. */
| 357 | |
| 358 | /** C++17 only: similar to Decode(), but with specified false positive probability. */ |
| 359 | std::optional<std::vector<uint64_t>> DecodeFP(uint32_t fpbits) const |
| 360 | { |
| 361 | return Decode(ComputeMaxElements(GetBits(), GetCapacity(), fpbits)); |
| 362 | } |
| 363 | #endif // __cplusplus >= 201703L |
| 364 | }; |
| 365 | #endif // __cplusplus >= 201103L |
nothing calls this directly
no test coverage detected