object ReceiveY
- Source
- ReceiveY.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ReceiveY
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- case class HaltL (cause: Cause) extends HaltOne with Product with Serializable
- sealed trait HaltOne extends ReceiveY[Nothing, Nothing]
- case class HaltR (cause: Cause) extends HaltOne with Product with Serializable
- case class ReceiveL [+A](get: A) extends ReceiveY[A, Nothing] with Product with Serializable
- case class ReceiveR [+B](get: B) extends ReceiveY[Nothing, B] with Product with Serializable
- trait ReceiveT [X] extends AnyRef
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def align[A, B](a: Seq[A], b: Seq[B]): Stream[ReceiveY[A, B]]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- def concatLeft[A, B](s: Seq[ReceiveY[A, B]]): Stream[A]
- def concatRight[A, B](s: Seq[ReceiveY[A, B]]): Stream[B]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- implicit def receiveYInstance[X](implicit X: Monoid[X]): Monad[[y]ReceiveY[X, y]]
- implicit def receiveYequal[X, Y](implicit X: Equal[X], Y: Equal[Y]): Equal[ReceiveY[X, Y]]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- implicit def toApplicativeOps[X, A](f: ReceiveY[X, A])(implicit arg0: Monoid[X]): ApplicativeOps[[y]ReceiveY[X, y], A]
- implicit def toApplyOps[X, A](f: ReceiveY[X, A])(implicit arg0: Monoid[X]): ApplyOps[[y]ReceiveY[X, y], A]
- implicit def toFunctorOps[X, A](f: ReceiveY[X, A])(implicit arg0: Monoid[X]): FunctorOps[[y]ReceiveY[X, y], A]
- implicit def toMonadOps[X, A](f: ReceiveY[X, A])(implicit arg0: Monoid[X]): MonadOps[[y]ReceiveY[X, y], A]
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- def unalign[A, B](s: Seq[ReceiveY[A, B]]): (Stream[A], Stream[B])
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- object HaltOne