vle-list-split
(vle-list-split lst
item)
splits a list at a given item and returns both
list parts
|
Arguments |
lst list to be splitted at 'item' |
|
Return |
a list containing the "left"
and the "right" sub-lists of input list lst; item is added to the "right"
list, if present; |
|
Example |
(vle-list-split '(1 2 3 4 5)
3) => '((1 2) (3 4 5)) |
|
Alias |
|
|
Remarks |
|
| © Bricsys NV. All rights reserved. |