abstract
class
Yoneda[F[_], A] extends AnyRef
Instance Constructors
-
new
Yoneda()
Abstract Value Members
-
abstract
def
apply[B](f: (A) ⇒ B): F[B]
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
-
-
def
extend[G[_]](f: ~>[[β$0$]Yoneda[F, β$0$], G])(implicit arg0: Functor[G]): Yoneda[G, A]
-
def
finalize(): Unit
-
def
flatMap[G[_]](f: ~>[F, [β$1$]Yoneda[G, β$1$]]): Yoneda[G, A]
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
def
map[B](f: (A) ⇒ B): Yoneda[F, B]
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
run: F[A]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toCoyoneda: Aux[F, A, A]
-
def
toRan: Ran[Id.Id, F, A]
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
The cofree functor generated by
F
. The Yoneda lemma says thatYoneda[F,A]
is isomorphic toF[A]
for any functorF
. The homomorphism fromYoneda[F,A]
toF[A]
exists even when we have forgotten thatF
is a functor. Can be seen as a partially appliedmap
for the functorF
.