vl-every
(vl-every comparator listA [ listB [ listC ]
... ] ] ] )
This function compares all corresponding items
of listA with those from listB
and listC
... using the comparator function.
Arguments |
comparator
(function, lambda, symbol) the
comparator function to be used; |
Return |
T if comparator function returns non-NIL for each comparison; NIL otherwise |
Example |
(vl-every '< '(1 2 3) '(2
3 4) '(3 4 5)) T |
Remarks |
processing the comparison of list items stops if any list has no more items, or if any comparison returns NIL |
© Bricsys NV. All rights reserved. |