ObserveSyntaxHelper

final class ObserveSyntaxHelper[A, Δ](src: Observable[A, Δ])(using dom: AuxΔ[A, Δ])
class Object
trait Matchable
class Any

Value members

Concrete methods

def by(f: A => Trigger[A, Δ]): M[Subscription[M]]
def byC[B](f: A => ContU[M, (Trigger[A, Δ], B)]): ContU[M, (Subscription[M], B)]
def byC_[B](f: A => ContU[M, (Trigger[A, Δ], B)]): ContU[M, B]
def byM[B](f: A => M[(Trigger[A, Δ], B)])(implicit M: Bind[M]): ContU[M, (Subscription[M], B)]
def byM_[B](f: A => M[(Trigger[A, Δ], B)])(implicit M: Bind[M]): ContU[M, B]
def by_(f: A => Trigger[A, Δ]): M[Unit]
def threshold(f: A => Option[M[Unit]]): M[Subscription[M]]
def thresholdOpt(f: A => Option[Option[M[Unit]]]): M[Subscription[M]]
def thresholdOpt_(f: A => Option[Option[M[Unit]]]): M[Unit]
def thresholdTransition(f: A => Option[Trigger[A, Δ]]): M[Subscription[M]]
def thresholdTransition_(f: A => Option[Trigger[A, Δ]]): M[Unit]
def threshold_(f: A => Option[M[Unit]]): M[Unit]
def untilRight(f: A => Either[M[Unit], M[Unit]]): M[Subscription[M]]
def untilRightS[S](init: A => Either[M[S], M[Unit]], trans: (S, A, Δ) => Either[M[S], M[Unit]]): M[Subscription[M]]
def untilRightSeq(f: A => Either[M[Unit], M[Unit]]): M[Subscription[M]]
def untilRightSeq_(f: A => Either[M[Unit], M[Unit]]): M[Unit]
def untilRight_(f: A => Either[M[Unit], M[Unit]]): M[Unit]