「Last (autolisp)」の版間の差分
| 細 (「Last」を「Last (autolisp)」へ移動) | 細編集の要約なし | ||
| 1行目: | 1行目: | ||
| {{AutoLISP}} | |||
| ; 構文 | ; 構文 | ||
| : (last ''lst'') | : (last ''lst'') | ||
| 12行目: | 13行目: | ||
| ; サンプル | ; サンプル | ||
| : (last '(a b c d e))   | <pre class="brush:autolisp;"> | ||
| (last '(a b c d e))   | |||
| E | |||
| ; --- | |||
| (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")
