https://issues.dlang.org/show_bug.cgi?id=8930
Jon Degenhardt <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |m --- Comment #1 from Jon Degenhardt <[email protected]> --- A related thread from the learn forum: https://forum.dlang.org/thread/[email protected] Example from the thread: char[] thing = ['a', 'b', 'c']; thing = thing.remove(1); The above does not compile. Switching to However, the following does: ubyte[] thing = ['a', 'b', 'c']; thing = thing.remove(1); Many users might expect remove to work on char[] also. It does work with dchar[] arrays. --
