fabienmica
fabienmica
Having a chunkBy function for nogc would be great.
``` string[][] data = [["100", "1Y"], ["200", "2Y"], ["300", "3Y"]]; data.fuse; ``` This does not compile, because it goes to char level instead and shape do not match. I also...
MirException message only print "A" and not "AB" ``` import mir.exception; auto test() { throw new MirException("A", "B"); } try test(); catch(MirException e) { writeln(e.msg); } ```
staticArray does not compile when **string** with: > mir-core\source\mir\functional.d(57,12): Error: returning `a` escapes a reference to variadic parameter `a` The code below compiles, removing the comment doesn't. ``` import mir.functional:...