[#RandomMixin-01-2constructor-01] = xref:RandomMixin-01.adoc[RandomMixin]::RandomMixin :relfileprefix: ../ :mrdocs: Constructors == Synopses Declared in `<random.h>` Construct a mixin with an empty bit buffer. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:RandomMixin-01/2constructor-03.adoc[RandomMixin]() noexcept = default; ---- [.small]#xref:RandomMixin-01/2constructor-03.adoc[_» more..._]# Deleted copy constructor; an RNG must not be copied. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:RandomMixin-01/2constructor-0b.adoc[RandomMixin](xref:RandomMixin-01.adoc[RandomMixin] const& other) = delete; ---- [.small]#xref:RandomMixin-01/2constructor-0b.adoc[_» more..._]# Deleted move constructor; an RNG must not be moved. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:RandomMixin-01/2constructor-0a.adoc[RandomMixin](xref:RandomMixin-01.adoc[RandomMixin]&& other) = delete; ---- [.small]#xref:RandomMixin-01/2constructor-0a.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *other* | The instance that would be copied. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#