「Length」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
編集の要約なし
編集の要約なし
 
18行目: 18行目:


; サンプル
; サンプル
<syntaxhighlight lang="lisp" line>
<pre class="brush:autolisp;">
(length '(a b c d))  
(length '(a b c d))  
4
4
27行目: 27行目:
(length '())  
(length '())  
0
0
</syntaxhighlight>
</pre>




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

2021年5月29日 (土) 11:05時点における最新版

構文
(length lst)


機能
リストの要素数を表す整数を返す。


引数
  • lst リスト。


戻り値
整数。


サンプル
(length '(a b c d)) 
4

(length '(a b (c d))) 
3

(length '()) 
0