tags:

views:

331

answers:

4

I'm writing code that looks similar to this:

public IEnumerable<T> Unfold<T>(this T seed)
{
    while (true)
    {
        yield return [next (T)object in custom sequence];
    }
}

Obviously, this method is never going to return. (The C# compiler silently allows this, while R# gives me the warning "Function never returns".)

Generally speaking, is it bad desing to provide an enumerator that returns an infinite amount of items, without supplying a way to stop enumerating?

Are there any special considerations for this scenario? Mem? Perf? Other gotchas?

If we always supply an exit condition, which are the options? E.g:

  • an object of type T that represents the inclusive or exclusive boundary
  • a Predicate<T> continue (as TakeWhile does)
  • a count (as Take does)
  • ...

Should we rely on users calling Take(...) / TakeWhile(...) after Unfold(...)? (Maybe the preferred option, since it leverages existing Linq knowledge.)

Would you answer this question differently if the code was going to be published in a public API, either as-is (generic) or as a specific implementation of this pattern?

+5  A: 

So long as you document very clearly that the method will never finish iterating (the method itself returns very quickly, of course) then I think it's fine. Indeed, it can make some algorithms much neater. I don't believe there are any significant memory/perf implications - although if you refer to an "expensive" object within your iterator, that reference will be captured.

There are always ways of abusing APIs: so long as your docs are clear, I think it's fine.

Jon Skeet
Apart from documentation, I think the method name should if possible indicate that the enumeration is infinite. I.e. "IEnumerable<T> GetAllPrimeNumbers()" is fine, but I'm not sure about a name like Unfold<T>.
Joe
"Unfold" is the name of the higher order function, which is the inverse of "fold" and, IMO, a valid name in a generic context. As for specific implementations, yes, better naming is desirable.
Lette
Btw, the Aggregate method is the Linq implementation of the "fold" function, and to my knowledge there's no built-in inverse implementation. Please correct me if I'm wrong.
Lette
SelectMany is probably the closest to Unfold, but it's not a direct mapping. It will let you easily unfold a sequence of sequences, but not a sequence of "some sequences and some elements".
Jon Skeet
+5  A: 

"Generally speaking, is it bad desing to provide an enumerator that returns an infinite amount of items, without supplying a way to stop enumerating?"

The consumer of the code, can always stop enumerating (using break for example or other means). If your enumerator returns and infinite sequence, that doesn't mean the client of the enumerator is somehow forced to never break enumeration, actually you can't make an enumerator which is guaranteed to be fully enumerated by a client.

Should we rely on users calling Take(...) / TakeWhile(...) after Unfold(...)? (Maybe the preferred option, since it leverages existing Linq knowledge.)

Yes, as long as you clearly specify in your documentation that the enumerator returns and infinite sequence and breaking of enumeration is the caller's responsibility, everything should be fine.

Returning infinite sequences isn't a bad idea, functional programing languages have done it for a long time now.

Pop Catalin
+1  A: 

I agree with Jon. Compiler transforms your method to class implementing simple state machine that keeps reference to current value (i.e. value that will be returned via Current property). I used this approach several times to simplify code. If you clearly document method's behavior it should work just fine.

aku
A: 

I would not use an infinite enumerator in a public API. C# programmers, myself included, are too used to the foreach loop. This would also be consistent with the .NET Framework; notice how the Enumerable.Range and Enumerable.Repeat methods take an argument to limit the number of items in the Enumerable. Microsoft chose to use Enumerable.Repeat(" ", 10) instead of Enumerable.Repeat(" ").Take(10) to avoid the infinite enumeration and I would adhere to their design choices.

Dan Goldstein
C# developers should start to learn that enumerators enumerate over sequences (finite or infinite) and not over lists. Finite generators are not appropriate for all classes of problems, sometimes you can't know how many elements you need beforehand.
Pop Catalin
The purpose of Repeat/Range are to repeat for a given number of iterations - that's why the number's there. It's perfectly reasonable in other scenarios to have infinite sequences.
Jon Skeet