Vinyl
Preparing search index...
@amzn/vinyl-util
LinkedNode
Interface LinkedNode<T>
A doubly-linked node.
If a node is to move from one list to another, it must be removed first.
interface
LinkedNode
<
T
>
{
next
:
null
|
LinkedNode
<
T
>
;
previous
:
null
|
LinkedNode
<
T
>
;
removed
:
boolean
;
value
:
T
;
}
Type Parameters
T
Index
Properties
next
previous
removed
value
Properties
next
next
:
null
|
LinkedNode
<
T
>
previous
previous
:
null
|
LinkedNode
<
T
>
removed
removed
:
boolean
value
value
:
T
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
next
previous
removed
value
Vinyl
Loading...
A doubly-linked node.
If a node is to move from one list to another, it must be removed first.