(for-all cond list1 [... listn])
Posted: Thu Jun 07, 2007 10:55 pm
It would be nice if (for-all ..) allowed for additional,
optional list arguments.
(for-all (fn (item) ...) list1 ... listn)
It may not always be efficient to use append to
concatenate the lists since the for-all may be in
a loop itself.
It would also be nice to have a disjunction complement to
for-all called for-any
(for-any cond list1 ... listn)
optional list arguments.
(for-all (fn (item) ...) list1 ... listn)
It may not always be efficient to use append to
concatenate the lists since the for-all may be in
a loop itself.
It would also be nice to have a disjunction complement to
for-all called for-any
(for-any cond list1 ... listn)