bit-or arity appears limited to 2 items

2011-10-23 Thread rugby_road
The bit-or arity seems to be limited to 2, rather than more, which seems to disagree with the documentation. I get "Wrong number of args (3) passed to: core$bit-or" for (bit-or 1 1 1). Have I misunderstood this operation; shouldn't it take any number of values? thanks Blake -- You received thi

Re: bit-or arity appears limited to 2 items

2011-10-25 Thread rugby_road
Thanks! That was it! Blake On Oct 23, 10:24 pm, Sean Corfield wrote: > On Fri, Oct 21, 2011 at 4:12 PM, rugby_road wrote: > > The bit-or arity seems to be limited to 2, rather than more, which > > seems to disagree with the documentation.  I get "Wrong number of args >

creating a finite sequence of uncertain length

2011-10-25 Thread rugby_road
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