Release calc version 2.10.2t30

This commit is contained in:
Landon Curt Noll
1996-07-06 04:17:00 -07:00
commit 4618313a82
388 changed files with 85904 additions and 0 deletions

39
help/join Normal file
View File

@@ -0,0 +1,39 @@
NAME
join - form a list by concatenation of specified lists
SYNOPSIS
join(x, y, ...)
TYPES
x, y, ... lists
return list or null
DESCRIPTION
For lists x, y, ..., join(x, y, ...) returns the list whose length
is the sum of the lengths of x, y, ..., in which the members of each
argument immediately follow those of the preceding argument.
The lists x, y, ... are not changed.
If any argument is not a list, a null value is returned.
EXAMPLE
> A = list(1, 2, 3)
> B = list(4, 5)
> join(A, B)
list (5 elements, 5 nonzero):
[[0]] = 1
[[1]] = 2
[[2]] = 3
[[3]] = 4
[[4]] = 5
LIMITS
none
LIBRARY
none
SEE ALSO
reverse, sort