Does Phobos have some variadic algorithm to order l-value reference arguments in place? Something like
int a=3;
int b=2;
int c=1;
orderInPlace(a,b,c);
// a is now 1
// b is now 2
// c is now 3
Also a functional variant, say order(a, b, c)
, that returns a tuple would also be nice.
If not, I guess we should make use of std.algorithm:swap
.
See also http://forum.dlang.org/thread/[email protected]#post-eweortsmcmibppmvtriw:40forum.dlang.org.
Adam's solution works, although it uses a temporary copy of the elements. With a small modification to std.algorithm, it's possible to write a version which sorts the elements in-place:
However, it is only practical if the values passed to
orderInPlace
are large, unassignable, or otherwise impractical to copy.