摘要:
建好一个typelist,其中都是类型信息而已,很重要的一个应用,循环迭代干些事情。看了下boost的for_each实现,用我自己的typelist,大概代码如下: template void foreach_f(const F& f, TList* s = 0) { typedef typename front::type head_type; typedef typename pop_front::type tail_type; head_type head_arg; f(head_arg); fo... 阅读全文
posted @ 2014-03-04 02:21 饭后温柔 阅读(1347) 评论(1) 推荐(0) 编辑