MCPcopy Create free account
hub / github.com/boostorg/asio / any_io_executor

Function any_io_executor

include/boost/asio/any_io_executor.hpp:109–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107#else // defined(GENERATING_DOCUMENTATION)
108 template <typename OtherAnyExecutor>
109 any_io_executor(OtherAnyExecutor e,
110 constraint_t<
111 conditional_t<
112 !is_same<OtherAnyExecutor, any_io_executor>::value
113 && is_base_of<execution::detail::any_executor_base,
114 OtherAnyExecutor>::value,
115 typename execution::detail::supportable_properties<
116 0, supportable_properties_type>::template
117 is_valid_target<OtherAnyExecutor>,
118 false_type
119 >::value
120 > = 0)
121 : base_type(static_cast<OtherAnyExecutor&&>(e))
122 {
123 }
124#endif // defined(GENERATING_DOCUMENTATION)
125
126 /// Construct to point to the same target as another any_executor.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected