All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.TupledFunction.scala Maven / Gradle / Ivy

The newest version!
package scala

import scala.annotation.implicitNotFound

/** Type class relating a `FunctionN[..., R]` with an equivalent tupled function `Function1[TupleN[...], R]`
 *
 *  @tparam F a function type
 *  @tparam G a tupled function type (function of arity 1 receiving a tuple as argument)
 */
@implicitNotFound("${F} cannot be tupled as ${G}")
sealed trait TupledFunction[F, G]:
  def tupled(f: F): G
  def untupled(g: G): F

private[scala] object TupledFunction:
  def apply[F, G](tupledImpl: F => G, untupledImpl: G => F): TupledFunction[F, G] =
    new TupledFunction[F, G]:
      def tupled(f: F): G = tupledImpl(f)
      def untupled(g: G): F = untupledImpl(g)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy