SignalOfEitherOps

io.laminext.core.ops.signal.SignalOfEitherOps
final class SignalOfEitherOps[L, R](underlying: Signal[Either[L, R]])

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

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