|
Orbital library | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object orbital.logic.functor.Functionals.Anamorphism
public static class Functionals.Anamorphism
Anamorphism recursion functional scheme (lense).
An anamorphism is denoted by concave lenses.
Also known as unfold.
Anamorphism are special hylomorphisms
Functionals.lense(Function, Predicate, Object)
,
Meijer, E. and Fokkinga, M.M. and Paterson, R., Functional Programming with Bananas, Lenses, Envelopes and Barbed Wire, FPCA91: Functional Programming Languages and Computer Architecture, pp. 124--144, volume 523, Lecture Notes in Computer Science, Springer-Verlag, 1991.,
Serialized FormNested Class Summary |
---|
Nested classes/interfaces inherited from interface orbital.logic.functor.Function |
---|
Function.Composite |
Nested classes/interfaces inherited from interface orbital.logic.functor.Functor |
---|
Functor.Specification |
Field Summary |
---|
Fields inherited from interface orbital.logic.functor.Function |
---|
callTypeDeclaration |
Constructor Summary | |
---|---|
Functionals.Anamorphism(Function g,
Predicate p)
Constructs a new anamorphism |(g,p)|:B→A*. |
Method Summary | |
---|---|
java.lang.Object |
apply(java.lang.Object b)
|(g,p)| b. |
boolean |
equals(java.lang.Object o)
. |
int |
hashCode()
|
java.lang.String |
toString()
Returns a string representation of the Functor. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public Functionals.Anamorphism(Function g, Predicate p)
g
- is a function g:B→A×B=A||B that returns objects of type Pair
.p
- is a predicate p⊆B.Method Detail |
---|
public boolean equals(java.lang.Object o)
Functor
Note that functors will often provide intensional equality only, since the mathematical notion of extensional equality for functions and predicates is undecidable anyway (Proposition of Rice). Nevertheless implementations are encouraged to provide a larger subset of extensional equality as far as possible.
equals
in interface Functor
equals
in class java.lang.Object
public int hashCode()
hashCode
in interface Functor
hashCode
in class java.lang.Object
public final java.lang.Object apply(java.lang.Object b)
ana b | = | ∅ | ⇐ p(b) |
= | [a|ana(b')] | ⇐ ¬ p(b) | |
where (a, b') = g(b) | |||
|(g,p)| := ana |
apply
in interface Function
b
- a value ∈B.
List
.public java.lang.String toString()
Functor
This method is already provided in Object.toString()
.
If it is overwritten it should return a nice name for the functor.
toString
in interface Functor
toString
in class java.lang.Object
|
Orbital library 1.3.0: 11 Apr 2009 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |