Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Extension method: IEnumerable<T> OrderLazy<T>(this IEnumerable<T>)

Declaration

public static IEnumerable<T> OrderLazy<T>(
    this IEnumerable<T> source
)

Summary

Orders the items, lazily. It is much faster when extracting only the first few items using Enumerable.Take<TM1>(IEnumerable<TM1>, int).

Generic type parameters

TThis type parameter is not documented.

Parameters

this IEnumerable<T>source The sequence to be sorted.

Returns

The given IEnumerable<T> with its elements sorted progressively.