last()

Zusammenfassung

Gibt das letzte Element in list . Bei list Leer NoValue wird angezeigt.

Syntax

last ( list As List ) As Any 
Argument Typ Beschreibung
list List Ursprüngliche list .

Beispiel 1

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

Beispiel 2

Intent >last({}) 
--> NoValue