Perfect! Thanks!
On Oct 25, 7:10 pm, Alan Malloy wrote:
> (take-while (complement nil?) (repeatedly myfunc))
>
> On Oct 25, 4:07 pm, rugby_road wrote:
>
>
>
>
>
>
>
> > I have a function without arguments which returns a big,complex object
> > repeatedly until it returns nil. That is to say tha
(take-while (complement nil?) (repeatedly myfunc))
On Oct 25, 4:07 pm, rugby_road wrote:
> I have a function without arguments which returns a big,complex object
> repeatedly until it returns nil. That is to say that the function
> will produce a sequence of objects, but I don't know how many.
I have a function without arguments which returns a big,complex object
repeatedly until it returns nil. That is to say that the function
will produce a sequence of objects, but I don't know how many. I want
to call the generator as a lazy sequence but how do I make such a
thing?
Currently I am d