Splittable

trait Splittable[M[_]]

The split operator needs an implicit instance of Splittable[M] in order to work on observables of M[_]

Companion:
object
class Object
trait Matchable
class Any
object SeqSplittable.type
object JsArraySplittable.type
object ListSplittable.type
object OptionSplittable.type
object SetSplittable.type
object VectorSplittable.type

Value members

Abstract methods

def empty[A]: M[A]
def map[A, B](inputs: M[A], project: A => B): M[B]

Concrete methods

def zipWithIndex[A](inputs: M[A]): M[(A, Int)]