UniteOps

final class UniteOps[F[_], G[_], A](fga: F[G[A]]) extends AnyVal
class AnyVal
trait Matchable
class Any

Value members

Concrete methods

def unite(F: Monad[F], A: Alternative[F], G: Foldable[G]): F[A]
See also

Alternative.unite Example:

scala> import cats.implicits._
scala> val x: List[Vector[Int]] = List(Vector(1, 2), Vector(3, 4))
scala> x.unite
res0: List[Int] = List(1, 2, 3, 4)