last()

概要

list の最後の要素を返します。 list が空の場合、 NoValue が返されます。

構文

last ( list As List ) As Any 
引数 [タイプ] 説明
list List オリジナルの list をクリックします。

例 1

Intent >last({ "a", "b", "c", "d"}) 
--> "d" 

例 2

Intent >last({}) 
--> NoValue