class CatsMonadToSemigroup[F[_], A] extends Semigroup[F[A]]
Given that A
has a cats.Monoid
implementation, this builds
a Semigroup[F[A]]
instance for any F[_]
data type that
implements cats.effect.Sync
.
Used for IO.
NOTE: nothing in this implementation is specific to Monix or to
cats-effect
, but these instances are not provided by default
by Cats for any monad, probably because they aren't useful
for every monad.
- Source
- CatsMonadToMonoid.scala
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- CatsMonadToSemigroup
- Semigroup
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
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 combine(x: F[A], y: F[A]): F[A]
- Definition Classes
- CatsMonadToSemigroup → Semigroup
- def combineAllOption(as: IterableOnce[F[A]]): Option[F[A]]
- Definition Classes
- Semigroup
- def combineN(a: F[A], n: Int): F[A]
- Definition Classes
- Semigroup
- 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()
- def intercalate(middle: F[A]): Semigroup[F[A]]
- Definition Classes
- Semigroup
- 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 repeatedCombineN(a: F[A], n: Int): F[A]
- Attributes
- protected[this]
- Definition Classes
- Semigroup
- def reverse: Semigroup[F[A]]
- Definition Classes
- Semigroup
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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()