SignalOfEitherOps

final class SignalOfEitherOps[L, R](underlying: Signal[Either[L, R]])
class Object
trait Matchable
class Any

Value members

Concrete methods

@inline
@inline
def isLeft: Signal[Boolean]
@inline
def isRight: Signal[Boolean]
@inline
def leftMap[C](project: L => C): Signal[Either[C, R]]
@inline
def rightMap[C](project: R => C): Signal[Either[L, C]]