Marcel van Lohuizen
Marcel van Lohuizen
FYI, it is not just the function pattern. ``` #disjuncts: { in!: [...string] out: in } _foo: #disjuncts & { } x: _foo.out ```
Some additional clarifications: * Comparing noncrete values _should_ be a resolvable "incomplete" error. This is necessary to maintain compatibility with the lattice/ evaluator. * Comparing two concrete values of a...
Technically it is still an experiment. Depends on what convention we want to use. Up to you.
Also, we haven't updated the spec yet. So there are some outstanding issues.
Since there have been no objections, we will accept this proposal.
The spec disallowed `$` to reserve this identifier for special purposes. For instance, some configuration languages reserve it to refer to the root of the file. Some JSON query languages...
I think a package like `cue-lang.org/pkg/net`, but then for URLs would indeed make a lot of sense.
Note that package net currently already has a `FQDN` builtin. This seems to suggest URL should be in `net` and not in `net/url`. This has the additional benefit that a...
The easiest fix would just be to use `__self`, instead of `self`. After doing a Sanitize, we could then replace all occurrences of `__self` that resolve to the predeclared identifier...
> I think the point is to not litter every single CUE file with the experiment; it's only added to those that need it. In terms of a "fix" for...