github.com/solo-io/cue@v0.4.7/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 --
    17  (struct){
    18    a: (number){ &(>=0, <=10, !=1) }
    19  }