boost::redis::resp3::flat_tree::operator=

Copy assignment.

Synopsis

flat_tree&
operator=(flat_tree const& other);

Description

Replaces the nodes in *this by copying the nodes in other. After the copy, *this and other have independent lifetimes (usual copy semantics).

Object lifetimes

References to the nodes and strings in *this are invalidated.

Exception safety

Basic guarantee. Memory allocations might throw.

Return Value

Reference to the current object

Parameters

Name Description

other

The object to copy assign from

Created with MrDocs