RandomMixin::RandomMixin

Constructors

Synopses

Declared in <random.h>

Construct a mixin with an empty bit buffer.

constexpr
RandomMixin() noexcept = default;
» more...

Deleted copy constructor; an RNG must not be copied.

RandomMixin(RandomMixin const& other) = delete;
» more...

Deleted move constructor; an RNG must not be moved.

RandomMixin(RandomMixin&& other) = delete;
» more...

Parameters

NameDescription
otherThe instance that would be copied.