sdr 0.7

Uses of Class
net.cscott.sdr.util.LL

Packages that use LL
net.cscott.sdr.util This package contains useful utility code. 
 

Uses of LL in net.cscott.sdr.util
 

Fields in net.cscott.sdr.util declared as LL
 LL<T> LL.tail
          Remainder of the elements in the list.
 

Methods in net.cscott.sdr.util that return LL
static
<T> LL<T>
LL.create(List<T> elements)
          Factory: create a list.
static
<T> LL<T>
LL.create(T... elements)
          Factory: create a list.
static
<T> LL<T>
LL.NULL()
          Return a new empty list.
 LL<T> LL.pop()
          Remove the head of the list.
 LL<T> LL.push(T head)
          Add the given element to the start of the list.
 LL<T> LL.reverse()
          Return a list with elements in reverse order.
 

Constructors in net.cscott.sdr.util with parameters of type LL
LL(T head, LL<T> tail)
          Add an element to the front of tail.
 


sdr 0.7

Copyright © 2006-2009 C. Scott Ananian