1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 06:20:23 +02:00

(SRFI-1 Length Append etc): In concatenate, note equivalence to "apply append".

This commit is contained in:
Kevin Ryde 2004-12-04 22:43:51 +00:00
parent da9c77cf05
commit a3e856f275

View file

@ -348,6 +348,11 @@ Construct a list by appending all lists in @var{list-of-lists}.
@code{concatenate!} may modify the structure of the given lists in
order to produce the result.
@code{concatenate} is the same as @code{(apply append
@var{list-of-lists})}. It exists because some Scheme implementations
have a limit on the number of arguments a function takes, which the
@code{apply} might exceed. In Guile there is no such limit.
@end deffn
@deffn {Scheme Procedure} append-reverse rev-head tail