FromAssignment

implicit implicit class FromAssignment[U, V](a: U => V) extends InputAssignment[U, V]

An implicit class converting an assignment into an input assignment.

Value parameters:
a

the original assignment

trait InputAssignment[U, V]
trait U => V
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply(u: U): V
override def toString: String
Definition Classes
Function1 -> Any

Inherited methods

@unspecialized
def andThen[A](g: V => A): U => A
Inherited from:
Function1
@unspecialized
def compose[A](g: A => U): A => V
Inherited from:
Function1