mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-20 06:09:17 +02:00
Issue #198 - Remove custom "member" function
This commit is contained in:
parent
1391186a6f
commit
dfdd84d585
1 changed files with 0 additions and 11 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue