purify
C++ Purify implementation with native circuit and BPP support
Loading...
Searching...
No Matches
purify::NoexceptCheckedByteFill Concept Reference

Callable concept for byte-fill RNG adapters that report failure via Status. More...

#include <api.hpp>

Concept definition

template<typename FillRandom>
concept purify::NoexceptCheckedByteFill = requires(FillRandom&& fill, std::span<unsigned char> bytes) {
{ std::forward<FillRandom>(fill)(bytes) } noexcept -> std::same_as<Status>;
}
Callable concept for byte-fill RNG adapters that report failure via Status.
Definition api.hpp:113

Detailed Description

Definition at line 113 of file api.hpp.