Skip to content

Commit

Permalink
Implement anyImpl and allImpl
Browse files Browse the repository at this point in the history
  • Loading branch information
anttih committed Oct 27, 2023
1 parent 78cce21 commit 50ed219
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/Data/Array.ss
Original file line number Diff line number Diff line change
Expand Up @@ -196,13 +196,9 @@
;; Folding ---------------------------------------------------------------------
;;------------------------------------------------------------------------------

(define anyImpl
(lambda (p xs)
(error #f "anyImpl not implemented")))
(define anyImpl srfi:214:flexvector-any)

(define allImpl
(lambda (p xs)
(error #f "allImpl not implemented")))
(define allImpl srfi:214:flexvector-every)

;;------------------------------------------------------------------------------
;; Partial ---------------------------------------------------------------------
Expand Down

0 comments on commit 50ed219

Please sign in to comment.