17.05.2015 Views

zl:1 - FTP

zl:1 - FTP

zl:1 - FTP

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

char:;e 76<br />

char:;t char &rest chars Function<br />

This comparison predicate compares characters exactly, depending on all<br />

fields including code, bits, character style, and alphabetic case. If all of<br />

the arguments are equal, nil is returned; otherwise t.<br />

(char/= #\A #\A #\A) => NIL<br />

(char/= #\A #\8 #\C) => T<br />

char:;t can be used in place of char/=.<br />

I<br />

char~ char &rest chars Function<br />

This predicate compares characters exactly, depending on all fields including<br />

code, bits, character style, and alphabetic case. If each of the arguments<br />

is equal to or less than the next, t is returned; otherwise nil.<br />

(char T<br />

(char NIL<br />

(char T<br />

cha~ can be used instead of char= #\C #\8 #\A) => T<br />

(char>= #\A #\A) => T<br />

(char>= #\A #\8 #\C) => NIL<br />

char~ can be used instead of char>=. n<br />

char/= char &rest chars Function<br />

This comparison predicate compares characters exactly, depending on all<br />

fields including code, bits, character style, and alphabetic case. If all of<br />

the arguments are equal, nil is returned; otherwise t.<br />

(char/= #\A #\A #\A) => NIL<br />

(char/= #\A #\8 #\C) => T<br />

char:;t can be used in place of char/=.<br />

char< char &rest chars Function<br />

This comparison predicate compares characters exactly, depending on all<br />

fields including code, bits, character style, and alphabetic case. If all of<br />

the arguments are ordered from smallest to largest, t is returned; otherwise<br />

nil.

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!