% Function GRAPHIC-CHAR-P
Function GRAPHIC-CHAR-P
graphic-char-p
character => generalized-boolean
character - 文字
generalized-boolean - generalized-boolean
characterが図形文字の場合はtrueを、それ以外はfalseを返却します。
(graphic-char-p #\G) => true
(graphic-char-p #\#) => true
(graphic-char-p #\Space) => true
(graphic-char-p #\Newline) => false
なし。
もしcharacterが文字ではなかったら、型type-error
のエラーが生じます。
read
, 2.1. 文字の構文, 13.1.10. 処理系実装のスクリプトの説明
なし。