TupledFunction

scala.util.TupledFunction
sealed trait TupledFunction[F, G]

Type class relating a FunctionN[..., R] with an equivalent tupled function Function1[TupleN[...], R]

Type parameters

F

a function type

G

a tupled function type (function of arity 1 receiving a tuple as argument)

Attributes

Experimental
true
Source
TupledFunction.scala
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Abstract methods

def tupled(f: F): G

Attributes

Source
TupledFunction.scala
def untupled(g: G): F

Attributes

Source
TupledFunction.scala