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

Callable concept for byte-fill RNG adapters that cannot fail. More...

#include <api.hpp>

Concept definition

template<typename FillRandom>
concept purify::NoexceptByteFill = requires(FillRandom&& fill, std::span<unsigned char> bytes) {
{ std::forward<FillRandom>(fill)(bytes) } noexcept -> std::same_as<void>;
}
Callable concept for byte-fill RNG adapters that cannot fail.
Definition api.hpp:107

Detailed Description

Definition at line 107 of file api.hpp.