Assignment operators

Synopses

Declared in <random.h>

Deleted copy assignment; an RNG must not be copied.

RandomMixin&
operator=(RandomMixin const& other) = delete;

Deleted move assignment; an RNG must not be moved.

RandomMixin&
operator=(RandomMixin&& other) = delete;

Parameters

Name

Description

other

The instance that would be assigned from.

Created with MrDocs