When given an d you could be dealing with a fixed sequence like a list or array, an AST that will enumerate some external datasource, or even an AST on some existing collection. Is there a way to safely "materialize" the enumerable so that enumeration operations like foreach, count, etc. don't execute the AST each time?

I've often used .ToArray() to create this represenation but if the underlying storage is already a list or other fixed sequence, that seems like wasted copying. It would be nice if i could do

var enumerable = someEnumerable.Materialize();

if(enumberable.Any() {
  foreach(var item in enumerable) {
    ...
  }
} else {
  ...
}

Without having to worry that .Any() and foreach try to enumerate the sequence twice and without it unccessarily copying the enumerable.

link|improve this question

1  
This is a nice idea, but I would point out that often, existingCollection.ToList is done to protect against mutations to the existing collection. – Ani Jan 7 '11 at 2:10
The issue with .ToList() is that it will create a list of enumerables that aren't lists (arrays, ICollections, etc.) and return a mutable collection. – Arne Claassen Jan 7 '11 at 14:48
feedback

2 Answers

up vote 3 down vote accepted

Easy enough:

public static IList<TSource> Materialize<TSource>(this IEnumerable<TSource> source)
{
    if (source is IList<TSource>)
    {
        // Already a list, use it as is
        return (IList<TSource>)source;
    }
    else
    {
        // Not a list, materialize it to a list
        return source.ToList();
    }
}
link|improve this answer
1  
This is a good approach. I think it would be better to return an IEnumerable<T> instead, and also check for ICollection and ICollection<T>. – Ani Jan 7 '11 at 2:13
This is subtly different from the Linq.ToList() implementation which appears to always return a new copy so changes to the result don't change the original. Materialize as written will, depending on the type of input, sometimes return a copy and sometimes return the original - so changes to the result sometimes change the original. – Handcraftsman Jan 7 '11 at 13:52
Ani's got the right idea. My intention is not to create a mutable list, just an IEnumerable<T> that is safe and efficient to enumerate multiple times. Also, while I have never tested it, i assume that ToArray() is the cheaper fallback materializer. – Arne Claassen Jan 7 '11 at 14:53
@Handcraftsman - are you sure .ToList() always returns a new list? I thought it specifically didn't unless it had to. MSDN does not specify the behavior and I haven't cracked open Resharper to be sure. – Arne Claassen Jan 7 '11 at 14:56
@Arne I can't say for certain without access to the code but a little experimentation github.com/handcraftsman/Scratch/blob/master/src/Scratch/… with ToList() appears to verify that behavior. – Handcraftsman Jan 7 '11 at 15:04
show 3 more comments
feedback

Check out this blog post I wrote a couple of years ago: http://fallingcanbedeadly.com/posts/crazy-extention-methods-tolazylist

In it, I define a method called ToLazyList that effectively does what you're looking for.

As written, it will eventually make a full copy of the input sequence, although you could tweak it so that instances of IList don't get wrapped in a LazyList, which would prevent this from happening (this action, however, would carry with it the assumption that any IList you get is already effectively memoized).

link|improve this answer
That's a really interesting extension, but I don't think it's related to what the OP wants. That defers the materialization of the sequence on a need-basis, whereas the OP wants to eagerly materialize the sequence in an efficient manner; getting a reference to an existing collection if need be. – Ani Jan 7 '11 at 2:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.