racketf / list.any 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 Feb 2, 2022 Racket
racketf / filter-in 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 Feb 2, 2022 Racket
racketf / list.sort-by Star 0 Code Issues Pull requests Returns a list of elements sorted by predicate. scheme list racket sort learn recursive predicate popl eopl Updated Feb 2, 2022 Racket
racketf / list.find-index 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 Feb 2, 2022 Racket
racketf / list.every 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 Feb 2, 2022 Racket