https://issues.dlang.org/show_bug.cgi?id=13689
Issue ID: 13689
Summary: byCodeUnit is not sortable
Product: D
Version: D2
Hardware: x86_64
OS: Linux
Status: NEW
Severity: enhancement
Priority: P1
Component: Phobos
Assignee: [email protected]
Reporter: [email protected]
This doesn't compile with Phobos master:
import std.algorithm;
import std.utf;
void main () {
char [] c;
sort (c.byCodeUnit);
}
For whatever reasons, it doesn't satisfy `isRandomAccessRange`.
--
