Sort static array x of length n using a networking sort.
import std.algorithm.comparison : equal; int[4] x = [2, 3, 0, 1]; const int[4] y = [0, 1, 2, 3]; x.networkSortExactly(); assert(x[].equal(y[]));
See Implementation
Sort static array x of length n using a networking sort.