Allow static arrays to be sorted without [].
int[5] a = [ 9, 5, 1, 7, 3 ]; int[] b = [ 4, 2, 1, 6, 3 ]; sort(a); sort(b);
http://forum.dlang.org/thread/jhzurojjnlkatjdgcfhg@forum.dlang.org
See Implementation
Allow static arrays to be sorted without [].