Steven E. Harris
Steven E. Harris
> Union, intersection and difference already require O(n) time. Given that, we'd be increasing the coefficient (adding another _O(n)_), but not the exponent. That's not _as_ bad.
Should _cue cmd_ allow importing and unifying non-CUE files like other commands that adhere to the interface described in _cue flags_?
> But if you have specific examples to help motivate the design that would be very useful, thanks. I had tried to use _cue cmd_ to write a filter, where...
This desire came up again in [discussion in the "language" channel](https://cuelang.slack.com/archives/CLT4FD7KP/p1654796079801229) of the "CUE" Slack team.
See #363 for previous coverage.
Here are two compensatory steps from a GitHub Actions workflow job that I wrote: ```yaml # At present, "cue fmt" only mutates, and has no reporting mode. # See: #...
Using the tip version of the _cue_ tool, which reports its version as ``` cue version v0.4.4-0.20220928102958-cad3f2394c59 -compiler gc CGO_ENABLED 1 GOARCH amd64 GOOS darwin GOAMD64 v1 ``` I run...
Note that in both @addreas's and my examples, if you remove the call to the YAML marshaling function, _cue export_ succeeds in producing the expected output (just not as a...
Interestingly, using a comprehension over a list rather than a struct works fine: ```cue import ( "encoding/yaml" ) yaml.MarshalStream([ for v in [ { name: "a" type: "t1" }, {...
Precedent: #682 and #717.