Skip to content

Commit

Permalink
removed unused functions from core (these are in extended/impl now)
Browse files Browse the repository at this point in the history
  • Loading branch information
countvajhula committed Dec 20, 2023
1 parent c69c478 commit 268a5fd
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions qi-lib/flow/core/impl.rkt
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
#lang racket/base

(provide give
any?
all?
none?
map-values
filter-values
partition-values
Expand Down Expand Up @@ -198,15 +195,6 @@
(λ args
(apply values (zip-with call fs args))))

(define (all? . args)
(and (for/and ([v (in-list args)]) v) #t))

(define (any? . args)
(and (for/or ([v (in-list args)]) v) #t))

(define (none? . args)
(not (for/or ([v (in-list args)]) v)))

(define (repeat-values n . vs)
(apply values (apply append (make-list n vs))))

Expand Down

0 comments on commit 268a5fd

Please sign in to comment.