Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Has been cancelled
Takes a 3-arg combiner relation, a list, and an initial accumulator,
produces the right-fold result. (rel a tail-result result) combines
the head with the recursive result.
Examples:
(foldr-o appendo (list (list 1 2) (list 3) (list 4 5)) (list) q)
-> ((1 2 3 4 5)) ; flatten
(foldr-o conso (list 1 2 3) (list) q)
-> ((1 2 3)) ; rebuild list
4 new tests, 505/505 cumulative.