SketchyLISP Reference |
Copyright (C) 2006 Nils M Holm |
<<[string>?] | [Index] | [substring]>> |
Conformance: R5RS
Purpose: Test whether two strings are in non-ascending lexical order.
Arguments:
X - string
Y - string
Implementation:
(define (string>=? x y) (eq? (string<? x y) #f))
Example:
(string>=? "xyz" "xyz") => #t
See also:
string-ci>=?,
string<?,
string=?,
string>?,
string<=?,
char>=?,
equal?.
<<[string>?] | [Index] | [substring]>> |