「Last (autolisp)」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
編集の要約なし
 
編集の要約なし
 
(同じ利用者による、間の1版が非表示)
1行目: 1行目:
{{AutoLISP}}
; 構文
; 構文
: (last ''lst'')
: (last ''lst'')
12行目: 13行目:


; サンプル
; サンプル
: (last '(a b c d e))  
<pre class="brush:autolisp;">
: '''E'''
(last '(a b c d e))  
: ---
E
: (last '("first" "second" ("third" "fourth")))
; ---
: '''("third" "fourth")'''
(last '("first" "second" ("third" "fourth")))
 
("third" "fourth")
</pre>
[[Category:AutoLISP]]
[[Category:AutoLISP]]

2014年12月5日 (金) 17:47時点における最新版

構文
(last lst)
機能
リストの最後の要素を返す。
引数
  • lst : リスト。
戻り値
アトムまたはリスト。
サンプル
(last '(a b c d e)) 
E
; ---
(last '("first" "second" ("third" "fourth")))
("third" "fourth")