誰かが何を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
これから、私ができることとできないことは明確ではありません。