Assignment operators
Declared in <util/tokenpipe.h>
Deleted copy assignment; the pipe is move-only.
TokenPipe&
operator=(TokenPipe const& other) = delete;
» more...
Move-assigns a pipe, closing this one and taking the other's descriptors.
TokenPipe&
operator=(TokenPipe&& other);
» more...
a reference to this pipe
| Name | Description |
|---|---|
| other | the pipe that would be copied |