Splittable

com.raquo.airstream.split.Splittable
See theSplittable companion object
trait Splittable[M[_]]

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

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
object SeqSplittable.type
object JsArraySplittable.type
object ListSplittable.type
object OptionSplittable.type
object SetSplittable.type
object VectorSplittable.type
Show all

Members list

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)]