cuelang.org/go@v0.10.1/cue/testdata/export/014.txtar (about)

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