Issue #198 - Remove custom "member" function

This commit is contained in:
Justin Ethier 2017-05-08 18:44:29 -04:00
parent 1391186a6f
commit dfdd84d585

View file

@ -183,17 +183,6 @@
;; Utilities. ;; Utilities.
(cond-expand
(cyclone
; member : symbol sorted-set[symbol] -> boolean
(define (member sym S)
(if (not (pair? S))
#f
(if (eq? sym (car S))
#t
(member sym (cdr S))))))
(else #f))
(cond-expand (cond-expand
(cyclone (cyclone
; void : -> void ; void : -> void