char[] thing = ['a', 'b', 'c']; thing = thing.remove(1);
Is this a bug? std.algorithm claims remove() works on any forward range...
TheGag96 via Digitalmars-d-learn Sat, 30 Apr 2016 09:46:22 -0700
char[] thing = ['a', 'b', 'c']; thing = thing.remove(1);
Is this a bug? std.algorithm claims remove() works on any forward range...