string<?
-- r7rs
Definition comparator
;
Procedure variants:
((string |2...|) -> (boolean))
scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(string<? string_1 string_2 string_3 ...) (string-ci<? string_1 string_2 string_3 ...) (string>? string_1 string_2 string_3 ...) (string-ci>? string_1 string_2 string_3 ...) (string<=? string_1 string_2 string_3 ...) (string-ci<=? string_1 string_2 string_3 ...) (string>=? string_1 string_2 string_3 ...) (string-ci>=? string_1 string_2 string_3 ...)
These procedures return
#t
if their arguments are (respectively): monotonically increasing, monotonically decreasing, monotonically non-decreasing, or monotonically non-increasing.These predicates are required to be transitive.
These procedures compare strings in an implementation-defined way. One approach is to make them the lexicographic extensions to strings of the corresponding orderings on characters. In that case,
string<?
would be the lexicographic ordering on strings induced by the orderingchar<?
on characters, and if the two strings differ in length but are the same up to the length of the shorter string, the shorter string would be considered to be lexicographically less than the longer string. However, it is also permitted to use the natural ordering imposed by the implementation's internal representation of strings, or a more complex locale-specific ordering.In all cases, a pair of strings must satisfy exactly one of
string<?
,string=?
, andstring>?
, and must satisfystring<=?
if and only if they do not satisfystring>?
andstring>=?
if and only if they do not satisfystring<?
.The
-ci
procedures behave as if they appliedstring-foldcase
to their arguments before invoking the corresponding procedures without-ci
.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.