
19 Jul
2008
19 Jul
'08
3:47 p.m.
AMDG David Abrahams wrote:
Only slightly OT: in C++03, anyway, using a sequece of get<i> with increasing i to access all elements of a cons-list style tuple induces O(N^2) template instantiations. Have we done anything to fix that for C++0x? Did we legalize a flat (fusion-style) tuple implementation?
get can be implemented such that even for cons-list tuples, it takes O(n) template instantiations to access all elements. In Christ, Steven Watanabe