Start reimplementing missing ldict through bst.

This commit is contained in:
Dominik Pantůček 2023-07-07 11:26:53 +02:00
parent 33fadab5e7
commit f5e7dfe055
3 changed files with 22 additions and 0 deletions

View file

@ -45,4 +45,7 @@
(define (ldict-filter pred? ld)
(bst-filter ld pred?))
(define (ldict-reduce init proc ld)
(bst-reduce ld proc init))
)