Packages

t

scala.runtime.java8

JFunction2$mcDID$sp

trait JFunction2$mcDID$sp extends (Any, Any) ⇒ Any with Serializable

Annotations
@FunctionalInterface()
Source
JFunction2$mcDID$sp.scala
Linear Supertypes
java.io.Serializable, (Any, Any) ⇒ Any, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JFunction2$mcDID$sp
  2. Serializable
  3. Function2
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply$mcDID$sp(v1: Int, v2: Double): Double

Concrete Value Members

  1. def apply(v1: Any, v2: Any): Any

    Apply the body of this function to the arguments.

    Apply the body of this function to the arguments.

    returns

    the result of function application.

    Definition Classes
    JFunction2$mcDID$spFunction2
  2. def curried: (Any) ⇒ (Any) ⇒ Any

    Creates a curried version of this function.

    Creates a curried version of this function.

    returns

    a function f such that f(x1)(x2) == apply(x1, x2)

    Definition Classes
    Function2
    Annotations
    @unspecialized()
  3. def toString(): String

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    Function2 → AnyRef → Any
  4. def tupled: ((Any, Any)) ⇒ Any

    Creates a tupled version of this function: instead of 2 arguments, it accepts a single scala.Tuple2 argument.

    Creates a tupled version of this function: instead of 2 arguments, it accepts a single scala.Tuple2 argument.

    returns

    a function f such that f((x1, x2)) == f(Tuple2(x1, x2)) == apply(x1, x2)

    Definition Classes
    Function2
    Annotations
    @unspecialized()