dlang的dmd 2103版本s stdfunctionalcompose使用方法给我一个完整可以运行例子
以下是一个使用std.functional.compose的完整可运行例子:
import std.stdio;
import std.algorithm;
import std.array;
import std.functional;
int addOne(int x) {
return x + 1;
}
int square(int x) {
return x * x;
}
void main() {
auto f = compose!((a) => a.map!addOne, (a) => a.map!square);
auto arr = [1, 2, 3, 4, 5];
auto result = f(arr);
writeln(result); // [4, 9, 16, 25, 36]
}
这个例子定义了两个函数,addOne和square,分别将输入参数加1和乘以自身,然后使用compose将这两个函数组合起来,形成一个新的函数f,该函数将传入的数组先进行square操作,再进行addOne操作。最后,将一个数组传入f,得到一个新的数组,打印结果
原文地址: https://www.cveoy.top/t/topic/e8Zk 著作权归作者所有。请勿转载和采集!