Boost.Corosio

    • Introduction
    • Networking Tutorial
      • What Happens When You Connect
      • Addressing Machines on the Internet
      • Turning Names into Addresses
      • URLs and Resource Identification
      • Clients, Servers, and Ports
      • IP: Moving Packets Across Networks
      • UDP: Fast, Simple, Unreliable
      • TCP: Reliable Byte Streams
      • Opening and Closing TCP Connections
      • How TCP Moves Your Data
      • When Packets Go Missing
      • Making TCP Fast
    • Tutorials
      • Echo Server Tutorial
      • HTTP Client Tutorial
      • DNS Lookup Tutorial
      • TLS Context Configuration
    • Guide
      • TCP/IP Networking
      • Concurrent Programming
      • I/O Context
      • Sockets
      • Acceptors
      • Endpoints
      • Composed Operations
      • Timers
      • Signal Handling
      • Name Resolution
      • TCP Server
      • TLS Encryption
      • Error Handling
      • Buffer Sequences
    • Testing
      • Mock Sockets
    • Benchmarks
    • Glossary
    • Quick Start
    • Reference
  • boost::corosio::io_object::operator=
arrow_upward

boost::corosio::io_object::operator=

Move assign from another I/O object.

Synopsis

Declared in <boost/corosio/io/io_object.hpp>

io_object&
operator=(io_object&& other) noexcept;

Return Value

Reference to the current object

Parameters

Name Description

other

The object to move assign from

Created with MrDocs