trait Plus[F[_]] extends AnyRef
Universally quantified scalaz.Semigroup.
- Self Type
- Plus[F]
- Source
- Plus.scala
- Alphabetic
- By Inheritance
- Plus
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def plus[A](a: F[A], b: => F[A]): F[A]
Concrete 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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def compose[G[_]]: Plus[[α]F[G[α]]]
The composition of Plus
F
andG
,[x]F[G[x]]
, is a Plus - final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def plusLaw: PlusLaw
- val plusSyntax: PlusSyntax[F]
- def product[G[_]](implicit G0: Plus[G]): Plus[[α](F[α], G[α])]
The product of Plus
F
andG
,[x](F[x], G[x]])
, is a Plus - def semigroup[A]: Semigroup[F[A]]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def unfoldlPsumOpt[S, A](seed: S)(f: (S) => Maybe[(S, F[A])]): Maybe[F[A]]
Unfold
seed
to the left and sum using #plus.Unfold
seed
to the left and sum using #plus.Plus
instances with right absorbing elements may override this method to not unfold more than is necessary to determine the result. - def unfoldrPsumOpt[S, A](seed: S)(f: (S) => Maybe[(F[A], S)]): Maybe[F[A]]
Unfold
seed
to the right and sum using #plus.Unfold
seed
to the right and sum using #plus.Plus
instances with left absorbing elements may override this method to not unfold more than is necessary to determine the result. - final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()