Subject: [boost] [fusion] Feature Request: alias templates
From: Joe Gottman (joegottman_at_[hidden])
Date: 2014-03-18 20:38:16


I recently started using boost::fusion, and one feature that would make
it much more user friendly is template aliases like the ones that were
added for the standard type traits in C++14. For example,

template <typename I>
using deref_t = typename result_of::deref<I>::type;

Joe Gottman