Commit e717a4b1 authored by Dominik Charousset's avatar Dominik Charousset

Add `typed_actor::extend` to compose actor types

parent 90b06d78
...@@ -60,6 +60,11 @@ class typed_actor ...@@ -60,6 +60,11 @@ class typed_actor
public: public:
template <class... Es>
struct extend {
using type = typed_actor<Rs..., Es...>;
};
/** /**
* Identifies the behavior type actors of this kind use * Identifies the behavior type actors of this kind use
* for their behavior stack. * for their behavior stack.
......
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