摘要:
"std::bind" 定义于头文件 函数模板 bind 生成 f 的转发调用包装器。调用此包装器等价于以一些绑定到 args 的参数调用 f . The function template bind generates a forwarding call wrapper for f. Callin 阅读全文
摘要:
https://zh.cppreference.com/w/cpp/language/fold 折叠表达式(C++17起) 折叠表达式的实例化按如下方式展开成表达式 e: 1) 一元右折叠 (E op ...) 成为 (E1 op (... op (EN 1 op EN))) 2) 一元左折叠 (. 阅读全文