How do you view computed items when creating UCM transcripts?

Given the following transcript: “`ucm:hide .> pull https://github.com/unisonweb/base:v3:.releases._latest .base “` “`unison foo = List.map (x -> x * 2) [1,2,3] “` “`ucm .> add foo .> view foo “` When this is executed, I get the following output: “`unison foo = List.map (x -> x * 2) [1,2,3] “` “`ucm I found and typechecked these… Read More How do you view computed items when creating UCM transcripts?

What are the implications and semantics for choosing a mode in Unison's distributed package?

I searched through the documentation but may have missed where unique type Mode = Parallel | Sequential is discussed. In particular I’m trying to use it in Seq.fromList, which says: Seq.fromList : Mode -> [a] -> Seq k a … All branches in the result tree will have the provided Mode Is this a means… Read More What are the implications and semantics for choosing a mode in Unison's distributed package?