Uses of Interface
openlist.Function2arg

Packages that use Function2arg
openlist A package that provides Generic and Scheme-like lists, and more. 
openlist.util Utility functions to create various types of OpenLists. 
 

Uses of Function2arg in openlist
 

Methods in openlist with parameters of type Function2arg
 Type OpenList.foldl(Function2arg<Type> g, Type unit)
          Fold this list from the left using a 2-ary function.
 Type OpenList.foldr(Function2arg<Type> g, Type unit)
          Fold this list from the right using a 2-ary function.
 

Uses of Function2arg in openlist.util
 

Classes in openlist.util that implement Function2arg
 class DoubleMultiplier
          A DoubleMultiplier multiplies two Number arguments to return a Double.