Scalax
|
|
scalax/rules/Arrows.scala
]
trait
Arrow[-A, +B]
extends
Functor[B] with
AnyRefMethod Summary | |
abstract def
|
comp [C](bc : => Arr[B, C]) : Arr[A, C] |
abstract def
|
fst [C] : Arr[(A, C), (B, C)] |
def
|
map [C](f : (B) => C) : Arr[A, C] |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
Scalax
|
|