Skip to content
Advertisement

How to pass in an empty generator parameter?

I have a method which takes a generator plus some additional parameters and returns a new generator:

JavaScript

The usual use case for this function is similar to this:

JavaScript

But the problem is that sometimes I need to pass empty source to the merge method. Ideally I would like to be able to do something like this:

JavaScript

Which is exactly how I would do in C# (there is a IEnumerable<T>.Empty property). But I don’t see any kind of empty generator in the manual.

I’ve managed to work around this (for now) by using this function:

JavaScript

And this works. The code:

JavaScript

correctly outputs:

JavaScript

But this is obviously not an ideal solution. What would be the proper way of passing an empty generator to the merge method?

Advertisement

Answer

I’ve found the solution:

Since Generator extends Iterator I can just change the method signature to this:

JavaScript

This is input covariance thus it would break backward compatibility, but only if someone did extend the merge method. Any invocations will still work.

Now I can invoke the method with PHP’s native EmptyIterator:

JavaScript

And the usual generator also works:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement