실행기 요구 사항

Boost C++ Libraries/Boost.Asio

Boost.Asio - Executor requirements

Executor requirements (실행기 요구 사항) 표준 실행기 (Standard executors) executor-of-impl을 기술(설명)-전용 개념으로 둔다. template concept executor-of-impl = invocable && constructible_from && move_constructible && copy_constructible && is_nothrow_copy_constructible_v && equality_comparable /* nothrow */ && requires(const E& e, F&& f) { execution::execute(e, (F&&)f); }; 그런 다음 executor와 executor_of 개념은 다음과 같이 정의된다: tem..

까마귀75
'실행기 요구 사항' 태그의 글 목록