Closure Library API Documentation
Go to class or file:
structs.LinkedMap.Node_
Extends
Internal class for a doubly-linked list node containing a key/value pair.
Useful links
Source Code
Git
Inheritance
goog.structs.LinkedMap.Node_
Constructor
goog.structs.LinkedMap.Node_(
key
,
value
)
Parameters
key
:
KEY
The key.
value
:
VALUE
The value.
Instance Methods
Public
Protected
Private
Defined in
goog.structs.LinkedMap.Node_
remove
()
Causes this node to remove itself from the list.
code »
Instance Properties
Defined in
goog.structs.LinkedMap.Node_
key
:
No description.
Code »
next
:
goog.structs.LinkedMap.Node_
The next node in the list.
Code »
prev
:
goog.structs.LinkedMap.Node_
The previous node in the list.
Code »
value
:
No description.
Code »
Package structs.LinkedMap
Package Reference