You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Low priority:
I'm trying to develop some inheritance-handling templates and I find myself constantly writing decltype($T.bases()) when I'd rather write $T::bases or at least $T::bases_t.
I might also slightly prefer $T::size instead $T.size(), seems like the more common way of accessing info when doing template meta programming, for which these reflection properties are very useful.
The text was updated successfully, but these errors were encountered:
Low priority:
I'm trying to develop some inheritance-handling templates and I find myself constantly writing
decltype($T.bases())
when I'd rather write$T::bases
or at least$T::bases_t
.I might also slightly prefer
$T::size
instead$T.size()
, seems like the more common way of accessing info when doing template meta programming, for which these reflection properties are very useful.The text was updated successfully, but these errors were encountered: