Kotlin Wrappers API Reference
Toggle table of contents
common
Platform filter
common
Switch theme
kotlin-browser
/
web.dom
/
NamedNodeMap
Named
Node
Map
class
NamedNodeMap
:
ArrayLike
<
Attr
>
,
JsIterable
<
Attr
>
(
source
)
The
NamedNodeMap
interface represents a collection of Attr objects.
MDN Reference
Members
Properties
length
Link copied to clipboard
open
override
val
length
:
Int
MDN Reference
Functions
get
Link copied to clipboard
open
operator
fun
get
(
index
:
Int
)
:
Attr
open
operator
fun
get
(
key
:
Symbol.iterator
)
:
(
)
->
JsIterator
<
Attr
>
get
Named
Item
Link copied to clipboard
fun
getNamedItem
(
qualifiedName
:
String
)
:
Attr
?
MDN Reference
get
Named
Item
NS
Link copied to clipboard
fun
getNamedItemNS
(
namespace
:
String
?
,
localName
:
String
)
:
Attr
?
MDN Reference
item
Link copied to clipboard
fun
item
(
index
:
Int
)
:
Attr
?
MDN Reference
iterator
Link copied to clipboard
open
inline operator
fun
iterator
(
)
:
Iterator
<
Attr
>
remove
Named
Item
Link copied to clipboard
fun
removeNamedItem
(
qualifiedName
:
String
)
:
Attr
MDN Reference
remove
Named
Item
NS
Link copied to clipboard
fun
removeNamedItemNS
(
namespace
:
String
?
,
localName
:
String
)
:
Attr
MDN Reference
set
Named
Item
Link copied to clipboard
fun
setNamedItem
(
attr
:
Attr
)
:
Attr
?
MDN Reference
set
Named
Item
NS
Link copied to clipboard
fun
setNamedItemNS
(
attr
:
Attr
)
:
Attr
?
MDN Reference