Uses of Interface
openlist.Function1arg

Packages that use Function1arg
openlist A package that provides Generic and Scheme-like lists, and more. 
openlist.incremental A sub-class of OpenList that allows dynamic growth on demand, e.g. 
openlist.util Utility functions to create various types of OpenLists. 
 

Uses of Function1arg in openlist
 

Classes in openlist that implement Function1arg
(package private)  class OpenList.Neutralizer
          A Function1arg that neutralizes an object, making the types of its elements Object.
 

Methods in openlist with parameters of type Function1arg
 OpenList<java.lang.Object> OpenList.map(Function1arg<Type> f)
          Map a 1-ary function over this list of elements.
 

Uses of Function1arg in openlist.incremental
 

Fields in openlist.incremental declared as Function1arg
(package private)  Function1arg<Object> Mapper.f
          the function being mapped
 

Methods in openlist.incremental with parameters of type Function1arg
 OpenList<java.lang.Object> IncrementalList.map(Function1arg<Type> f)
          Map a 1-ary function over this list of elements.
 

Constructors in openlist.incremental with parameters of type Function1arg
Mapper(OpenList<Object> L, Function1arg<Object> f, Growable<Object> growable)
          Create a Mapper, operating on an OpenList L, with a function f.
 

Uses of Function1arg in openlist.util
 

Classes in openlist.util that implement Function1arg
 class DoubleSquareRooter
          A SquareRooter extracts the square root of its argument its argument
 class IntegerScaler
          A Scaler (not scaler) multiplies its argument by a fixed value, as specified in the constructor.
 class IntegerSquarer
          A Squarer squares its argument