boost::redis::resp3::flat_tree::operator=
Move assignment.
Synopsis
constexpr
flat_tree&
operator=(flat_tree&& other) = default;
Description
Replaces the nodes in *this by taking ownership of the nodes in other. other is left in a valid but unspecified state.
Object lifetimes
Iterators, pointers and references to the nodes and strings in other remain valid. Iterators, pointers and references to the nodes and strings in *this are invalidated.
Parameters
| Name | Description |
|---|---|
other |
The object to move assign from |
Created with MrDocs