Prev
Open Object Rexx
Next
Code style
dark
electric
light
print
rgfdark
rgflight
tokio-day
tokio-night
vim-dark-blue
vim-dark-darkblue
vim-dark-desert
vim-dark-elflord
vim-dark-evening
vim-dark-industry
vim-dark-koehler
vim-dark-murphy
vim-dark-pablo
vim-dark-ron
vim-dark-slate
vim-dark-torte
vim-light-delek
vim-light-morning
vim-light-peachpuff
vim-light-shine
vim-light-zellner
5.3.6.22. last
Returns the index of the last item in the array or
.nil
if the array is empty. For multi-dimensional Arrays, index is returned as an array of index items.
Example 5.181. Array class — last method
a
=
.array
~
of
(
"
Fred
"
,
,
"
Mike
"
,
,
"
David
"
)
say
a
~
last
-- says: 5
Prev
5.3.6.21. items
Up
Home
Next
5.3.6.23. lastItem