Commit ed2c2bad authored by Dominik Charousset's avatar Dominik Charousset

Add is_stream type trait

parent 875274cc
...@@ -636,6 +636,12 @@ struct is_actor_handle<actor> : std::true_type {}; ...@@ -636,6 +636,12 @@ struct is_actor_handle<actor> : std::true_type {};
template <class... Ts> template <class... Ts>
struct is_actor_handle<typed_actor<Ts...>> : std::true_type {}; struct is_actor_handle<typed_actor<Ts...>> : std::true_type {};
template <class T>
struct is_stream : std::false_type {};
template <class T>
struct is_stream<stream<T>> : std::true_type {};
} // namespace detail } // namespace detail
} // namespace caf } // namespace caf
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment