template template parameter

于 2021-03-16 发布
1
2
3
4
5
6
7
8
9
template<template<typename...> typename T>
       auto add(std::string label, const T<string>& origin) -> bool
       {
           auto container = data\_\[label\];
           for (string& e : origin) {
               container.data.push\_back(e);
           }
            return true;
       }

文档可以看Template_template_parameter(但是根本看不懂

目录