Vle-stringp

提供:GizmoLabs - だいたい CAD LISP なサイト
構文
(vle-stringp obj)


機能
obj が文字列型かどうかを調べる
(= (type obj) 'STR)) と同様。


引数
  • obj : 値


戻り値
T = 'obj' は 文字列オブジェクト、nil = 'obj' は 文字列オブジェクトでない


サンプル

<syntaxhighlight lang="lisp" line> (vle-enamep 123) nil

(vle-enamep T) nil

(vle-enamep "ENAME") T

</syntaxhighlight>



関連事項