Input

sealed trait Input[+A]
Companion:
object
class Object
trait Matchable
class Any
class Assign[A]
object Ignore.type
object Unassign.type

Value members

Concrete methods

def flatMap[B](f: A => Input[B]): Input[B]
def flatten[B](implicit ev: A <:< Input[B]): Input[B]
def fold[B](fundef: => B, funset: => B, fset: A => B): B
def map[B](f: A => B): Input[B]