Skip to content

Commit

Permalink
Oops -- minor reversion.
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott L. Burson committed Jul 27, 2024
1 parent a44614b commit debf632
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/fset.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -1177,11 +1177,11 @@ for the possibility of different set implementations; it is not for public use.
(make-wb-set result-2))))

;;; A set is another kind of boolean-valued map.
(defmethod filter ((pred wb-set) (s wb-set))
(defmethod filter ((pred set) (s set))
(intersection pred s))

;;; A bag is yet another kind of boolean-valued map.
(defmethod filter ((pred wb-bag) (s wb-set))
(defmethod filter ((pred bag) (s set))
(intersection pred s))

(defmethod image ((fn function) (s wb-set))
Expand Down

0 comments on commit debf632

Please sign in to comment.