Add placeholder

This commit is contained in:
Justin Ethier 2020-05-25 18:57:55 -04:00
parent cf3d2163e4
commit 972b896e2b

View file

@ -606,7 +606,13 @@
(define (string<=? str1 str2) (<= (string-cmp str1 str2) 0))
(define (string>? str1 str2) (> (string-cmp str1 str2) 0))
(define (string>=? str1 str2) (>= (string-cmp str1 str2) 0))
; TODO: generalize to multiple arguments: (define (string<? str1 str2 . strs)
; ; TODO: generalize to multiple arguments: (define (string<? str1 str2 . strs)
; (define (string=?-2 str1 str2) (equal? (string-cmp str1 str2) 0))
; (define (string<?-2 str1 str2) (< (string-cmp str1 str2) 0))
; (define (string<=?-2 str1 str2) (<= (string-cmp str1 str2) 0))
; (define (string>?-2 str1 str2) (> (string-cmp str1 str2) 0))
; (define (string>=?-2 str1 str2) (>= (string-cmp str1 str2) 0))
(define (member-helper obj lst cmp-proc)
(cond