| Package | Description |
|---|---|
| craterdog.collections.primitives |
| Modifier and Type | Field and Description |
|---|---|
Link<T> |
Link.next
This attribute points to the next link in the list.
|
Link<T> |
Link.previous
This attribute points to the previous link in the list.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> void |
Link.insertBeforeLink(Link<T> newLink,
Link<T> existingLink)
This utility method inserts a new link in a linked list before the specified existing link.
|
static <T> void |
Link.insertBeforeLink(Link<T> newLink,
Link<T> existingLink)
This utility method inserts a new link in a linked list before the specified existing link.
|
static <T> void |
Link.removeLink(Link<T> link)
This utility method removes the specified link from a linked list.
|
static <T> void |
Link.removeLinks(Link<T> firstLink,
Link<T> lastLink)
This utility method removes a set of links from a linked list, starting with the first
link and including the link before the lastLink.
|
static <T> void |
Link.removeLinks(Link<T> firstLink,
Link<T> lastLink)
This utility method removes a set of links from a linked list, starting with the first
link and including the link before the lastLink.
|
Copyright © 2015 Crater Dog Technologies(TM). All rights reserved.