projects
/
LeanCalc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
focus expression text field at startup -> version 1.2
[LeanCalc.git]
/
help
/
makelist
1
NAME
2
makelist - create a list with a specified number of null members
3
4
SYNOPSIS
5
makelist(x)
6
7
TYPES
8
x int
9
10
return list
11
12
DESCRIPTION
13
For non-negative integer x, makelist(x) returns a list of size x
14
all members of which have null value.
15
16
EXAMPLE
17
> A = makelist(4)
18
> A
19
20
list (4 members, 4 nonzero):
21
[[0]] = NULL
22
[[1]] = NULL
23
[[2]] = NULL
24
[[3]] = NULL
25
26
LIMITS
27
0 <= x < 2^31
28
29
LINK LIBRARY
30
none
31
32
SEE ALSO
33
modify
34