Uses of Class
jfun.util.List

Packages that use List
jfun.util Provides utility classes that can be reused by the entire java functional library. 
 

Uses of List in jfun.util
 

Fields in jfun.util declared as List
static List List.nil
          the empty list.
 

Methods in jfun.util that return List
abstract  List List.tail()
          Get the tail of the list.
 List List.rev()
          reverse the list.
abstract  List List.revAppend(List l)
          reverse the list and append it to the tail of list l.
 List List.cons(java.lang.Object obj)
          add an object to the head of the list.
static List List.fromArray(java.lang.Object[] arr)
          Create a list using the elements of the array.
static List List.fromArray(java.lang.Object arr)
          Create a list using the elements of the array.
 

Methods in jfun.util with parameters of type List
abstract  List List.revAppend(List l)
          reverse the list and append it to the tail of list l.