Home
Manual
Reference
Source
Test
Repository
F
DllNode
F
DllQueue
F
IfQueue
F
Node
F
NodeQueue
src/Node.js
export default function Node ( value , next ) { this.value = value ; this.next = next ; }