Uses of Interface
ix.util.Function1

Packages that use Function1
ix.icore I-X core classes. 
ix.icore.domain Domain descriptions. 
ix.icore.process Classes for representing processes. 
ix.util General-purpose utilities. 
ix.util.lisp List-processing utilities. 
ix.util.match Pattern-matching utilities. 
 

Uses of Function1 in ix.icore
 

Methods in ix.icore with parameters of type Function1
 Issue Issue.instantiate(MatchEnv env, Function1 ifUnbound)
           
 

Uses of Function1 in ix.icore.domain
 

Methods in ix.icore.domain with parameters of type Function1
 Refinement Refinement.instantiate(MatchEnv env, Function1 ifUnbound)
           
 PatternAssignment PatternAssignment.instantiate(MatchEnv env, Function1 ifUnbound)
           
 Constraint Constraint.instantiate(MatchEnv env, Function1 ifUnbound)
           
 NodeSpec NodeSpec.instantiate(MatchEnv env, Function1 ifUnbound)
           
 java.lang.Object Instantiable.instantiate(MatchEnv env, Function1 ifUnbound)
           
 

Uses of Function1 in ix.icore.process
 

Classes in ix.icore.process that implement Function1
 class PNode.MakeVarIfUnbound
           
(package private)  class ProcessModelManager.MakeVarIfUnbound
           
 

Uses of Function1 in ix.util
 

Methods in ix.util that return Function1
static Function1 Seq.elementAdder(Collector c)
           
static Function1 Fn.accessor(java.lang.Class c, java.lang.String methodName)
          Returns a function that calls the 0-argument method specified by a class and method name.
 

Methods in ix.util with parameters of type Function1
static void Seq.forEach(java.util.Enumeration e, Function1 f)
          Applies a Function1 to each element of an Enumeration and discards the results.
static java.util.Enumeration Seq.map(java.util.Enumeration e, Function1 f)
          Takes an Enumeration e and a Function1 f and returns a "wrapper" Enumeration w such that each element of w is the result of calling f on the corresponding element of e.
static java.util.Collection Collect.map(java.util.Collection c, Function1 f)
          Returns a new collection of the same class as the original and with corresponding elements obtained by calling the specified function.
static java.util.Collection Collect.map(java.lang.Class resultClass, java.util.Collection c, Function1 f)
          Returns a new collection of the specified result class and with elements obtained by calling the specified function on the corresponding elements of the original collection.
 

Constructors in ix.util with parameters of type Function1
CommandLoop(Function1 eval)
           
 

Uses of Function1 in ix.util.lisp
 

Subinterfaces of Function1 in ix.util.lisp
protected static interface LListCollector.adderFunction
           
 

Methods in ix.util.lisp that return Function1
 Function1 LListCollector.elementAdder()
           
 Function1 LListCollector.elementPusher()
           
 Function1 LListCollector.llistAppender()
           
 Function1 LListCollector.llistConcer()
           
 

Methods in ix.util.lisp with parameters of type Function1
 LList LList.mapc(Function1 f)
           
 LList LList.mapcar(Function1 f)
           
 LList LList.flatmap(Function1 f)
           
 void LList.walkTree(Function1 f)
           
 

Uses of Function1 in ix.util.match
 

Methods in ix.util.match with parameters of type Function1
 java.lang.Object MatchEnv.instantiateTree(java.lang.Object tree, Function1 ifUnbound)