有人可以说什么std.algorithm.map
返回吗?(非常感谢链接到一些文档页面)从错误消息中它的结果是类型Result
ulong[] x = [1,2,3];
ulong[] y = std.algorithm.map!"a"(x); // Error: cannot implicitly convert <..> of type Result to ulong[]
在http://dlang.org/phobos/std_algorithm.html#map中,关于它的信息很少:
The call map!(fun)(range) returns a range of which elements are obtained by applying fun(x) left to right for all x in range
由此不清楚,我能用它做什么或不能做什么。