Cody Allen
Cody Allen
For people with access to the `@cloud/nimbus` repo, this transcript will recreate the issue: ```` ```ucm .> pull @cloud/nimbus/releases/6.1.3 .> test ``` ````
Okay I figured out what is going on here. Using `termLink` on a tracked term flags the pure code sandbox, but using it on a non-tracked term does not. Here...
There is a flag on each builtin for whether it is `Tracked` or `Untracked` that determines whether it needs to be explicitly enabled when sandboxing. As a heuristic, builtins that...
Hmm, I never followed up on that whole statement about this issue being a reminder to myself to make this contribution, did I? This is definitely related to #50. However,...
Hah I now retract my "Sounds fine to me" that I commented [here](https://github.com/unisonweb/base/issues/101#issuecomment-1235867322).
Sorry for the really slow reply, but thanks for reporting this @dantb! There was a bit of discussion about this on Slack and the consensus seems to be that `Natural`...
https://github.com/unisonweb/unison/issues/3336 is related (opened on unisonweb/unison as opposed to unisonweb/base).
I feel like the exclusive upper bound for index-based access is kind of carry-over from C-like languages and maybe is just confusing for a language like Unison where you typically...
@runarorama ooh I like how explicit your `Interval` library makes things. Some of the infix symbols for creating them might be a little controversial, but generally it looks like a...
If you use `Set.==` instead of `Universal.===`, then `s1 Set.== s2` does return `true`. However, I don't think that there's currently a good workaround for `Set.fromList [s1, s2]` returning a...