Function
Static Public Summary | ||
public |
Iterator(front: *, back: *, current: *) |
|
public |
Node(prev: *, next: *, value: *) |
|
public |
ReverseIterator(front: *, back: *, current: *) |
|
public |
TestList() Doubly linked list implementation making use of dummy nodes for the sake of simplicity. |
|
public |
test(_test: *, name: *, List: *) |
Static Public
public Iterator(front: *, back: *, current: *) source
import {Iterator} from '@aureooms/js-list-spec/src/TestList.js'
Params:
Name | Type | Attribute | Description |
front | * | ||
back | * | ||
current | * |
public Node(prev: *, next: *, value: *) source
import {Node} from '@aureooms/js-list-spec/src/TestList.js'
Params:
Name | Type | Attribute | Description |
prev | * | ||
next | * | ||
value | * |
public ReverseIterator(front: *, back: *, current: *) source
import {ReverseIterator} from '@aureooms/js-list-spec/src/TestList.js'
Params:
Name | Type | Attribute | Description |
front | * | ||
back | * | ||
current | * |
public TestList() source
import {TestList} from '@aureooms/js-list-spec/src/TestList.js'
Doubly linked list implementation making use of dummy nodes for the sake of simplicity.
public test(_test: *, name: *, List: *) source
import {test} from '@aureooms/js-list-spec/src/test.js'
Params:
Name | Type | Attribute | Description |
_test | * | ||
name | * | ||
List | * |