|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sf.jga.fn.Functor<R>
public abstract class Functor<R>
A Function object that accepts an arbitrary number of arguments and returns
a value of type R. The Functor interface is generally not typesafe. It is
typesafe with respect to the return type (R), but the compiler cannot ensure
that the number of arguments or their types are appropriate for any given
implementation of the Functor interface. However, three direct subclasses,
Generator
In short, if you want the compiler to enforce type safetype with respect to the number and type of arguments, then do not use the method(s) defined by this class: use the methods defined by the typesafe derived classes.
Copyright © 2006 David A. Hall
Constructor Summary | |
---|---|
Functor()
|
Method Summary | |
---|---|
void |
accept(Visitor v)
default implementation of Visitable interface. |
Functor<R> |
bind0th(java.lang.Object arg0,
java.lang.Object... args)
Binds the given values to this functor, starting from the first argument. |
Functor<R> |
bindNth(int idx,
java.lang.Object arg0,
java.lang.Object... args)
Binds the given values to this functor, starting from the given index. |
Functor<R> |
composeNth(int idx,
BinaryFunctor<?,?,?> bf)
Uses the given functor to replace two arguments at the given index with a single value |
Functor<R> |
composeNth(int idx,
UnaryFunctor<?,?> uf)
Uses the given functor to replace an argument at the given index |
abstract R |
eval(java.lang.Object... args)
A non-typesafe evaluation method for function objects. |
Functor<R> |
generateNth(int idx,
Generator<?> gen)
Uses the given generator to insert an argument at the given index |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Functor()
Method Detail |
---|
public abstract R eval(java.lang.Object... args)
public Functor<R> bind0th(java.lang.Object arg0, java.lang.Object... args)
arg0
- args
-
public Functor<R> bindNth(int idx, java.lang.Object arg0, java.lang.Object... args)
idx
- arg0
- args
-
public Functor<R> generateNth(int idx, Generator<?> gen)
idx
- arg0
- args
-
public Functor<R> composeNth(int idx, UnaryFunctor<?,?> uf)
idx
- arg0
- args
-
public Functor<R> composeNth(int idx, BinaryFunctor<?,?,?> bf)
idx
- arg0
- args
-
public void accept(Visitor v)
accept
in interface Visitable
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |