IOutOfPlaceSort<T> interface

Generic interface for all algorithms in this collection that perform an out of place sort of an IList

public interface IOutOfPlaceSort<T>
    where T : IComparable
parameter description
T T must implement IComparable

Members

name description
Sort(…) Performs an in-place sort of the collection.

Remarks

The passed in Collection is unmodified by the sorting algorithm.

See Also