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.8. at
Returns the item associated with the specified
index
or
index
es. If the array has no item associated with the specified
index
or
index
es, this method returns
.nil
.
Note that the
index
argument may also be specified as an array of indexes.
Example 5.168. Array class — at method
a
=
.array
~
of
(
"
Mike
"
,
"
Rick
"
)
say
a
~
at
(
2
)
-- says: "Rick"
Prev
5.3.6.7. append
Up
Home
Next
5.3.6.9. delete