absl::HashState::operator=

Assignment operators

Synopses

Declared in <absl/hash/hash.h>

Copy assignment is disabled; HashState is move-only.

HashState&
operator=(HashState const& other) = delete;
» more...

Move-assign a HashState.

constexpr
HashState&
operator=(HashState&& other) = default;
» more...

Return Value

A reference to this object.

Parameters

NameDescription
otherThe source object.