string functions take at least two arguments
svn: r12167
This commit is contained in:
parent
866260c601
commit
e9ca169869
|
@ -374,35 +374,35 @@
|
||||||
(string-append (string ... -> string)
|
(string-append (string ... -> string)
|
||||||
"to juxtapose the characters of several strings")
|
"to juxtapose the characters of several strings")
|
||||||
|
|
||||||
(string=? (string string ... -> boolean)
|
(string=? (string string string ... -> boolean)
|
||||||
"to compare two strings character-wise")
|
"to compare two strings character-wise")
|
||||||
(string<? (string string ... -> boolean)
|
(string<? (string string string ... -> boolean)
|
||||||
"to determine whether one string alphabetically"
|
"to determine whether one string alphabetically"
|
||||||
" precedes another")
|
" precedes another")
|
||||||
(string>? (string string ... -> boolean)
|
(string>? (string string string ... -> boolean)
|
||||||
"to determine whether one string alphabetically"
|
"to determine whether one string alphabetically"
|
||||||
" succeeds another")
|
" succeeds another")
|
||||||
(string<=? (string string ... -> boolean)
|
(string<=? (string string string ... -> boolean)
|
||||||
"to determine whether one string alphabetically"
|
"to determine whether one string alphabetically"
|
||||||
" precedes another (or is equal to it)")
|
" precedes another (or is equal to it)")
|
||||||
(string>=? (string string ... -> boolean)
|
(string>=? (string string string ... -> boolean)
|
||||||
"to determine whether one string alphabetically"
|
"to determine whether one string alphabetically"
|
||||||
" succeeds another (or is equal to it)")
|
" succeeds another (or is equal to it)")
|
||||||
|
|
||||||
(string-ci=? (string string ... -> boolean)
|
(string-ci=? (string string string ... -> boolean)
|
||||||
"to compare two strings character-wise"
|
"to compare two strings character-wise"
|
||||||
" in a case-insensitive manner")
|
" in a case-insensitive manner")
|
||||||
(string-ci<? (string string ... -> boolean)
|
(string-ci<? (string string string ... -> boolean)
|
||||||
"to determine whether one string alphabetically"
|
"to determine whether one string alphabetically"
|
||||||
" precedes another in a case-insensitive manner")
|
" precedes another in a case-insensitive manner")
|
||||||
(string-ci>? (string string ... -> boolean)
|
(string-ci>? (string string string ... -> boolean)
|
||||||
"to determine whether one string alphabetically"
|
"to determine whether one string alphabetically"
|
||||||
" succeeds another in a case-insensitive manner")
|
" succeeds another in a case-insensitive manner")
|
||||||
(string-ci<=? (string string ... -> boolean)
|
(string-ci<=? (string string string ... -> boolean)
|
||||||
"to determine whether one string alphabetically"
|
"to determine whether one string alphabetically"
|
||||||
" precedes another (or is equal to it)"
|
" precedes another (or is equal to it)"
|
||||||
" in a case-insensitive manner")
|
" in a case-insensitive manner")
|
||||||
(string-ci>=? (string string ... -> boolean)
|
(string-ci>=? (string string string ... -> boolean)
|
||||||
"to determine whether one string alphabetically"
|
"to determine whether one string alphabetically"
|
||||||
" succeeds another (or is equal to it)"
|
" succeeds another (or is equal to it)"
|
||||||
" in a case-insensitive manner")
|
" in a case-insensitive manner")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user