IInPlaceSort<T> interface

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

public interface IInPlaceSort<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 modified by the sorting algorithm.

See Also