mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Add placeholder
This commit is contained in:
parent
cf3d2163e4
commit
972b896e2b
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue