-
Notifications
You must be signed in to change notification settings - Fork 82
Design Patterns
rrahn edited this page Apr 4, 2017
·
2 revisions
template <typename derived_t>
struct streamable
{
};
template <template <typename ...> class ...crtp>
struct my_class : public crtp<my_class<crtp...>>...
{
};
http://foonathan.net/blog/2016/10/26/output-parameter.html TODO: Write me.