mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 21:59:16 +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.
|
||||
|
||||
(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
|
||||
(cyclone
|
||||
; void : -> void
|
||||
|
|
Loading…
Add table
Reference in a new issue