Next: SRFI-1 Fold and Map, Previous: SRFI-1 Selectors, Up: SRFI-1
Return the length of the argument list lst. When lst is a circular list,
#fis returned.
Construct a list by appending all lists in list-of-lists.
concatenate!may modify the structure of the given lists in order to produce the result.
concatenateis the same as(apply appendlist-of-lists). It exists because some Scheme implementations have a limit on the number of arguments a function takes, which theapplymight exceed. In Guile there is no such limit.
Reverse rev-head, append tail and return the result. This is equivalent to
(append (reverserev-head)tail), but more efficient.
append-reverse!may modify rev-head in order to produce the result.
Return a list as long as the shortest of the argument lists, where each element is a list. The first list contains the first elements of the argument lists, the second list contains the second elements, and so on.
unzip1takes a list of lists, and returns a list containing the first elements of each list,unzip2returns two lists, the first containing the first elements of each lists and the second containing the second elements of each lists, and so on.
Return a count of the number of times pred returns true when called on elements from the given lists.
pred is called with N parameters
(pred elem1...elemN), each element being from the corresponding lst1 ... lstN. The first call is with the first element of each list, the second with the second element from each, and so on.Counting stops when the end of the shortest list is reached. At least one list must be non-circular.