| 109 | } |
| 110 | |
| 111 | [[nodiscard]] inline std::vector<bool> ConsumeRandomLengthBitVector(FuzzedDataProvider& fuzzed_data_provider, const std::optional<size_t>& max_length = std::nullopt) noexcept |
| 112 | { |
| 113 | return BytesToBits(ConsumeRandomLengthByteVector(fuzzed_data_provider, max_length)); |
| 114 | } |
| 115 | |
| 116 | [[nodiscard]] inline CDataStream ConsumeDataStream(FuzzedDataProvider& fuzzed_data_provider, const std::optional<size_t>& max_length = std::nullopt) noexcept |
| 117 | { |
no test coverage detected