moocf / list-any.racket Star 0 Code Issues Pull requests Returns #t if any element of lst satisfies pred, #f otherwise (see EOPL). scheme list racket learn recursive any exists predicate popl eopl Updated Apr 10, 2025 Racket
moocf / list-sort-by.racket Star 0 Code Issues Pull requests Returns a list of elements sorted by predicate. scheme list racket sort learn recursive predicate popl eopl Updated Apr 10, 2025 Racket
moocf / filter-in.racket Star 0 Code Issues Pull requests Returns list of elements in lst that satisfy the predicate pred (see EOPL). scheme list racket filter learn recursive in predicate popl eopl Updated Apr 10, 2025 Racket
moocf / list-find-index.racket Star 0 Code Issues Pull requests Returns 0-based position of first element in lst that satisfies predicate pred (see EOPL). scheme list racket learn recursive index predicate popl eopl Updated Apr 10, 2025 Racket
moocf / list-every.racket Star 0 Code Issues Pull requests Returns #f if any element of lst fails to satisfy pred, #t otherwise (see EOPL). scheme list racket learn recursive every predicate popl eopl Updated Apr 10, 2025 Racket