「Atom」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
(ページの作成: ; 構文 : (atom ''item'') ; 機能 : 指定された項目がアトムかどうかを調べる。 : AutoLISP はバージョンによって、atom の解釈が異なる場合…)
 
編集の要約なし
15行目: 15行目:


; サンプル
; サンプル
: (setq a '(x y z))  
<pre class="brush: autolisp;">
: '''(X Y Z)'''
(setq a '(x y z))  
: ---
(X Y Z)
: (setq b 'a)  
 
: '''A'''
(setq b 'a)  
: ---
A
: (atom 'a)  
 
: '''T'''
(atom 'a)  
: ---
T
: (atom a)  
 
: '''nil'''
(atom a)  
: ---
nil
: (atom 'b)  
 
: '''T'''
(atom 'b)  
: ---
T
: (atom b)  
 
: '''T'''
(atom b)  
: ---
T
: (atom '(a b c))  
 
: '''nil'''
(atom '(a b c))  
nil
</pre>
 




[[Category:AutoLISP]]
[[Category:AutoLISP]]

2010年3月12日 (金) 11:46時点における版

構文
(atom item)


機能
指定された項目がアトムかどうかを調べる。
AutoLISP はバージョンによって、atom の解釈が異なる場合があるので、AutoLISP 以外のコードから移植する時は注意が必要な場合がある。
引数
  • item 任意の LISP 要素。
戻り値
item がリストの場合は nil、それ以外の場合は T。
リスト以外は、すべてアトムとみなされる。
サンプル
 (setq a '(x y z)) 
 (X Y Z)

 (setq b 'a) 
 A

 (atom 'a) 
 T

 (atom a) 
 nil

 (atom 'b) 
 T

 (atom b) 
 T

 (atom '(a b c)) 
 nil