.map!t0UTF32
Пробую: import std.stdio; import std.uni; import std.range.primitives : walkLength; import std.algorithm; import std.range; import std.utf; void main(){ string t = "альфаt"; writeln(t.length); writeln(t[0..3]); // dstring f = "альфаt"; dstring f = t.map!toUTF32; writeln(f.length); writeln(f[0..3]); } вывод: dmd -run test.d /usr/include/dlang/dmd/std/algorithm/iteration.d(627): Error: template `std.utf.toUTF32` cannot deduce function from argument types `!()(dchar)` /usr/include/dlang/dmd/std/utf.d(3056): Candidate is: `toUTF32(S)(scope S s)` with `S = dchar` must satisfy the following constraint: ` isInputRange!S` /usr/include/dlang/dmd/std/algorithm/iteration.d(524): Error: template instance `std.algorithm.iteration.MapResult!(toUTF32, string)` error instantiating test.d(14): instantiated from here: `map!string` test.d(14): Error: cannot implicitly convert expression `map(t)` of type `MapResult!(toUTF32, string)` to `dstring`
Нет, правильно так: dstring f = t.toUTF32;
Там в тебе іх кілька Мапом просто йобни їх
/usr/include/dlang/dmd/std/algorithm/iteration.d(627): Error: template `std.utf.toUTF32` cannot deduce function from argument types `!()(DirEntry)` /usr/include/dlang/dmd/std/utf.d(3056): Candidate is: `toUTF32(S)(scope S s)` with `S = DirEntry` must satisfy the following constraint: ` isInputRange!S` /usr/include/dlang/dmd/std/algorithm/iteration.d(524): Error: template instance `std.algorithm.iteration.MapResult!(toUTF32, DirIterator)` error instantiating main.d(54): instantiated from here: `map!(DirIterator)` main.d(54): Error: cannot implicitly convert expression `map(dirEntries("/home/anon/", SpanMode.shallow, true))` of type `MapResult!(toUTF32, DirIterator)` to `dstring[]`
Кажется .array забит
Что это значит?
Всё что относится к делу вот: dirEntries("/home/anon/", SpanMode.shallow)
Вот тут я нашёл способ как обработать один элемент в итерации цикла, и тут же Туночка советует использовать map
Обсуждают сегодня