Marja van Aken
Marja van Aken
I followed these steps (https://www.git-tower.com/learn/git/faq/git-rename-master-to-main): * git pull * git checkout master * git branch -m master main * git push -u origin main * git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/main And...
@rdvdijk and @Carly-1, this is the implementation of the DelayedValue as discussed last week. See if you can find an example in your codebase that may benefit from this.
Note: if you get a java heap space error when using `fold(..., Shorthand::cat)`, then use `cat(...)` instead, that uses `FoldCat` which is an optimized version and will create a `ConcatenatedValueSource`...