Move SortOutput to std.algorithm.sorting.

This commit is contained in:
H. S. Teoh 2015-02-16 10:58:31 -08:00
parent a43e8d22cd
commit 873f448ef3
3 changed files with 11 additions and 12 deletions

View file

@ -183,13 +183,3 @@ public import std.algorithm.setops;
public import std.algorithm.searching;
public import std.algorithm.sorting;
/**
Specifies whether the output of certain algorithm is desired in sorted
format.
*/
enum SortOutput
{
no, /// Don't sort output
yes, /// Sort output
}