Constructors

Synopses

Declared in <random.h>

Construct a mixin with an empty bit buffer.

constexpr
RandomMixin() noexcept = default;

Deleted copy constructor; an RNG must not be copied.

RandomMixin(RandomMixin const& other) = delete;

Deleted move constructor; an RNG must not be moved.

RandomMixin(RandomMixin&& other) = delete;

Parameters

Name

Description

other

The instance that would be copied.

Created with MrDocs