Package | Description |
---|---|
listFW | |
listFW.visitor |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
ToStringHelper.nonEmptyCase(NEList host,
java.lang.Object... acc)
Continues accumulating the String representation by appending ", " + first to acc
and recurse!
|
java.lang.Object |
ToStringAlgo.nonEmptyCase(NEList host,
java.lang.Object... nu)
Passes "(" + first to the rest of IList and asks for help to complete the computation.
|
java.lang.Object |
IListAlgo.nonEmptyCase(NEList host,
java.lang.Object... inp)
Operates on
NEList , a non-empty list. |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
SumRevAlgo.nonEmptyCase(NEList host,
java.lang.Object... nu)
Returns first plus the sum of the rest of the list.
|
java.lang.Object |
SumFwdAlgo.nonEmptyCase(NEList host,
java.lang.Object... nu) |
java.lang.Object |
ProdAlgo.nonEmptyCase(NEList host,
java.lang.Object... inp) |
java.lang.Object |
FoldRAlgo.nonEmptyCase(NEList host,
java.lang.Object... acc) |
java.lang.Object |
FoldLAlgo.nonEmptyCase(NEList host,
java.lang.Object... acc) |
java.lang.Object |
CountAlgo.nonEmptyCase(NEList host,
java.lang.Object... inp)
Returns 1 plus the count of the rest of the list.
|
java.lang.Object |
CopyAlgo.nonEmptyCase(NEList host,
java.lang.Object... inp)
Returns a new NEList where first is the original first and
rest is a copy of the original rest.
|
java.lang.Object |
AddToAlgo.nonEmptyCase(NEList host,
java.lang.Object... inp)
Returns a new NEList with the original first added to the given integer parameter, where the rest of the
list is the AddToAlgo applied to the rest of the original list.
|