npt-japanese

% Function SIMPLE-STRING-P

UP


Function SIMPLE-STRING-P

Function SIMPLE-STRING-P

構文

simple-string-p object => generalized-boolean

引数と戻り値

object - オブジェクト
generalized-boolean - generalized-boolean

定義

objectが型simple-stringならtrue、それ以外はfalseを返却。

例文

(simple-string-p "aaaaaa") =>  true
(simple-string-p (make-array 6 
                             :element-type 'character 
                             :fill-pointer t)) =>  false

副作用

なし。

影響

なし。

例外

なし。

参考

なし。

備考

(simple-string-p object) ==  (typep object 'simple-string)

TOP, Github