vle-sublist
(vle-sublist lst startidx
nritems)
creates a sublist from given input list
'lst', starting
with item at index 'startidx'
and of maximum 'nritems' number of list items
from 'lst'
Arguments |
'lst' list to extract a sublist
from |
Return |
a sublist of
'lst' starting
with index 'startidx'
and containing 'nritems' of input list
'lst'; |
Example |
(vle-sublist '(1 2 3 4 5 6 7)
2 3) => '(3 4 5) |
Alias |
|
Remarks |
index is 0-based |
© Menhirs NV. All rights reserved. |