cuelang.org/go@v0.10.1/cue/testdata/export/013.txtar (about) 1 # DO NOT EDIT; generated by go run testdata/gen.go 2 # 3 -- in.cue -- 4 { 5 a: >=0 & <=10 & !=1 6 } 7 -- out/def -- 8 a: >=0 & <=10 & !=1 9 -- out/compile -- 10 --- in.cue 11 { 12 { 13 a: ((>=0 & <=10) & !=1) 14 } 15 } 16 -- out/eval/stats -- 17 Leaks: 0 18 Freed: 2 19 Reused: 0 20 Allocs: 2 21 Retain: 0 22 23 Unifications: 2 24 Conjuncts: 5 25 Disjuncts: 2 26 -- out/eval -- 27 (struct){ 28 a: (number){ &(>=0, <=10, !=1) } 29 }