Uses of Class
provided.listFW.NEList
Packages that use NEList
Package
Description
A package containing the list visitor system framework.
A package of provided visitors (algorithms) for use with the listFW visitor system and accumulators for use with the FoldLAlgo and FoldRAlgo visitors.
-
Uses of NEList in provided.listFW
Methods in provided.listFW with parameters of type NEListModifier and TypeMethodDescriptionIListAlgo.nonEmptyCase(NEList host, Object... inp)
Operates onNEList
, a non-empty list. -
Uses of NEList in provided.listFW.visitors
Methods in provided.listFW.visitors with parameters of type NEListModifier and TypeMethodDescriptionAddToAlgo.nonEmptyCase(NEList host, 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.CopyAlgo.nonEmptyCase(NEList host, Object... nu)
Returns a new NEList where first is the original first and rest is a copy of the original rest.CountAlgo.nonEmptyCase(NEList host, Object... nu)
Returns 1 plus the count of the rest of the list.FoldLAlgo.nonEmptyCase(NEList host, Object... accs)
FoldRAlgo.nonEmptyCase(NEList host, Object... acc)
ProdAlgo.nonEmptyCase(NEList host, Object... nu)
SumFwdAlgo.nonEmptyCase(NEList host, Object... nu)
SumRevAlgo.nonEmptyCase(NEList host, Object... nu)
Returns first plus the sum of the rest of the list.ToStringAlgo.nonEmptyCase(NEList host, Object... nu)
Passes "(" + first to the rest of IList and asks for help to complete the computation.ToStringHelper.nonEmptyCase(NEList host, Object... acc)
Continues accumulating the String representation by appending ", " + first to acc and recurse!