string= ( str1 str2 ignore-case -- ? ) (original) (raw)
string= ( str1 str2 ignore-case -- ? )
Vocabulary
parser-combinators
Inputs
str1 | an object |
---|---|
str2 | an object |
ignore-case | an object |
Outputs
? | an object |
---|
Definition
USING: kernel sequences unicode ;
: string= ( str1 str2 ignore-case -- ? )
[ [ >upper ] bi@ ] when sequence= ;