Boost C++ Libraries/Boost.Asio

Boost.Asio 색인 - execution::any_executor::operator=

까마귀75 2021. 2. 16. 13:26
728x90
반응형

execution::any_executor::operator=

[1 / 4 오버로드] 할당 연산자이다.

any_executor & operator=(
    const any_executor & e);

[operator=]


[2 / 4 오버로드] 이동 할당 연산자이다.

any_executor & operator=(
    any_executor && e);

[operator=]


[3 / 4 오버로드] 다형성 래퍼를 빈 상태로 설정하는 할당 연산자이다.

any_executor & operator=(
    nullptr_t );

[operator=]


[4 / 4 오버로드] 주어진 실행기(executor)로 다형성 래퍼를 생성하는 할당 연산자이다.

template<
    typename Executor>
any_executor & operator=(
    Executor e);

[Executor, operator=]


Boost.Asio 홈

728x90
반응형