ExtensionMethod.NET Home of 875 C#, Visual Basic, F# and Javascript extension methods

Cache()

Caches the results of an IEnumerable.

Source

public static IEnumerable<T> Cache<T>(this IEnumerable<T> source)
{
    return CacheHelper(source.GetEnumerator());
}

private static IEnumerable<T> CacheHelper<T>(IEnumerator<T> source)
{
    var isEmpty = new Lazy<bool>(() => !source.MoveNext());
    var head = new Lazy<T>(() => source.Current);
    var tail = new Lazy<IEnumerable<T>>(() => CacheHelper(source));

    return CacheHelper(isEmpty, head, tail);
}

private static IEnumerable<T> CacheHelper<T>(
    Lazy<bool> isEmpty, 
    Lazy<T> head, 
    Lazy<IEnumerable<T>> tail)
{
    if (isEmpty.Value)
        yield break;

    yield return head.Value;
    foreach (var value in tail.Value)
        yield return value;
}

Example

var cached = mySequence.Cache();

Author: YellPika

Submitted on: 16 okt 2012

Language: C#

Type: System.Collections.Generic.IEnumerable<T>

Views: 9534