A trivial example of an "infinite" IEnumerable would be

IEnumerable<int> Numbers() {
  int i=0;
  while(true) {
    yield return unchecked(i++);
  }
}

I know, that

foreach(int i in Numbers().Take(10)) {
  Console.WriteLine(i);
}

and

var q = Numbers();
foreach(int i in q.Take(10)) {
  Console.WriteLine(i);
}

both work fine (and print out the number 0-9).

But are there any pitfalls when copying or handling expressions like q? Can I rely on the fact, that they are always evaluated "lazy"? Is there any danger to produce an infinite loop?

link|improve this question

1  
Just to be picky, wouldn't your "infinite" example throw an exception when i = Int32.MaxValue and you do i++? Or does it cycle through to Int32.MinValue? Hmm..... – Nelson Rothermel Apr 29 '10 at 19:05
You are right. It will probably throw an overflow exception ... I'll edit it. – Danvil Apr 29 '10 at 19:06
Just being picky here, your point still came across. :) Also, I tried it and it does loop to Int32.MinValue. No OverflowException, so it was in fact an infinite loop. – Nelson Rothermel Apr 29 '10 at 19:08
3  
C# compiles without overflow checking by default. the safe way is always to write unchecked(i++) because you could compile with /checked, and then it would puke. Using unchecked() tells the compiler it is ok if an overflow occurs even if compiled with /checked. – dalo Apr 29 '10 at 19:15
Than back to the more beautiful original :D – Danvil Apr 29 '10 at 19:15
show 7 more comments
feedback

5 Answers

up vote 2 down vote accepted

Yes, you are guaranteed that the code above will be executed lazily. While it looks (in your code) like you'd loop forever, your code actually produces something like this:

IEnumerable<int> Numbers()
{
    return new PrivateNumbersEnumerable();
}

private class PrivateNumbersEnumerable : IEnumerable<int>
{
    public IEnumerator<int> GetEnumerator() 
    { 
        return new PrivateNumbersEnumerator(); 
    }
}

private class PrivateNumbersEnumerator : IEnumerator<int>
{
    private int i;

    public bool MoveNext() { i++; return true; }   

    public int Current
    {
        get { return i; }
    }
}

(This obviously isn't exactly what will be generated, since this is pretty specific to your code, but it's nonetheless similar and should show you why it's going to be lazily evaluated).

link|improve this answer
feedback

As long as you only call lazy, un-buffered methods you should be fine. So Skip, Take, Select, etc are fine. However, Min, Count, OrderBy etc would go crazy.

It can work, but you need to be cautious. Or inject a Take(somethingFinite) as a safety measure (or some other custom extension method that throws an exception after too much data).

For example:

public static IEnumerable<T> SanityCheck<T>(this IEnumerable<T> data, int max) {
    int i = 0;
    foreach(T item in data) {
        if(++i >= max) throw new InvalidOperationException();
        yield return item;
    }
}
link|improve this answer
+1 I have a competing answer, but I just have to give an upvote for an extension method for IEnumerable called SanityCheck. Best function name ever. I'm gonna go implement that . . . – Patrick Karcher Apr 29 '10 at 19:07
feedback

You would have to avoid any greedy functions that attempt to read to end. This would include Enumerable extensions like: Count, ToArray/ToList, and aggregates Avg/Min/Max, etc.

There's nothing wrong with infinite lazy lists, but you must make conscious decisions about how to handle them.

Use Take to limit the impact of an endless loop by setting an upper bound even if you don't need them all.

link|improve this answer
feedback

Yes, your code will always work without infinite looping. Someone might come along though later and mess things up. Suppose they want to do:

var q = Numbers().ToList();

Then, you're hosed! Many "aggregate" functions will kill you, like Max().

link|improve this answer
feedback

If it wasn't lazy evaluation, your first example won't work as expected in the first place.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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