item method
The item()
method of the NamedNodeMap interface
returns the item in the map matching the index.
Note: This method is also called when you use the operator
[]
syntax. So,myMap[i]
is equivalent tomyMap.item(i)
wherei
is a number.
Implementation
external Attr? item(int index);