Closed
Description
The documentation isn't quite clear on whether lists of lists should be supported (or arbitrary multi-dimensional lists). Sequences and arrays are supported, but should something like this work?
(defparameter *foo-list*
'(("moose" "mouse")
("horse" "house")))
(select:select *foo-list*
(select:range 0 1)
(select:range 0 1))
It seems like it wouldn't be too hard to support this and in at least one case just removing an assertion does allow this to "work". But of this is off-topic, I'll try to find a different approach.
thanks!