Files
rose-ash/lib/minikanren
giles 3842496f3b
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Has been cancelled
mk: foldr-o — relational right fold
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.
2026-05-08 12:21:42 +00:00
..
2026-05-08 10:41:02 +00:00