1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
raw: true
-- in.cue --
import "list"
{
a: list.Repeat([int], 5)
a: [1, 2, ...]
e: [...int]
e: [1, 2, ...]
f: [1, 2, ...]
}
-- out/def --
a: [1, 2, int, int, int]
b: <=5*[int] & [1, 2, ...]
c: (>=3 & <=5)*[int] & [1, 2, ...]
d: >=2*[int] & [1, 2, ...]
e: [1, 2, ...int]
f: [1, 2, ...]
-- out/compile --
--- in.cue
{
{
a: 〈import;list〉.Repeat([
int,
], 5)
a: [
1,
2,
...,
]
e: [
...int,
]
e: [
1,
2,
...,
]
f: [
1,
2,
...,
]
}
}
-- out/eval/stats --
Leaks: 0
Freed: 15
Reused: 11
Allocs: 4
Retain: 1
Unifications: 15
Conjuncts: 31
Disjuncts: 16
-- out/eval --
(struct){
a: (#list){
0: (int){ 1 }
1: (int){ 2 }
2: (int){ int }
3: (int){ int }
4: (int){ int }
}
e: (list){
0: (int){ 1 }
1: (int){ 2 }
}
f: (list){
0: (int){ 1 }
1: (int){ 2 }
}
}
|