StandardAssignment

abstract class StandardAssignment[-U, +V] extends U => V

An assignment with an human-readable result for the toString method.

Source:
StandardAssignment.scala
trait U => V
class Object
trait Matchable
class Any

Value members

Concrete methods

def updated[V2 >: V](u: U, v: V2): U => V2

Returns an updated assignment which maps the unknown u to the value v.

Returns an updated assignment which maps the unknown u to the value v.

Source:
StandardAssignment.scala

Inherited methods

def andThen[A](g: V => A): U => A
Inherited from:
Function1
def apply(v1: U): V
Inherited from:
Function1
def compose[A](g: A => U): A => V
Inherited from:
Function1
override def toString(): String
Definition Classes
Function1 -> Any
Inherited from:
Function1