Replies: 1 comment 5 replies
-
So I think that in this case the results are correct and precise. But I've understood that CUE really can't precisely always precisely calculate whether one value subsumes another. I think that if v.Subsume(w) returns nil, then then v definitely subsumes w. But there are cases where v.Subsume(w) returns an error even though v does subsume w. One example is comparing regexps. For instance building on your example, |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have the following
And I get the following output:
s > r
to not have an error, as my understanding is that a more constrained value is an instance of a less constrained value. Is that correct?Beta Was this translation helpful? Give feedback.
All reactions