Packages

t

scala.runtime.java8

JFunction1$mcFD$sp

trait JFunction1$mcFD$sp extends (Any) ⇒ Any with Serializable

Annotations
@FunctionalInterface()
Source
JFunction1$mcFD$sp.scala
Linear Supertypes
java.io.Serializable, (Any) ⇒ Any, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JFunction1$mcFD$sp
  2. Serializable
  3. Function1
  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$mcFD$sp(v1: Double): Float

Concrete Value Members

  1. def andThen[A](g: (Any) ⇒ A): (Any) ⇒ A

    Composes two instances of Function1 in a new Function1, with this function applied first.

    Composes two instances of Function1 in a new Function1, with this function applied first.

    A

    the result type of function g

    g

    a function R => A

    returns

    a new function f such that f(x) == g(apply(x))

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  2. def apply(t: Any): Any

    Apply the body of this function to the argument.

    Apply the body of this function to the argument.

    returns

    the result of function application.

    Definition Classes
    JFunction1$mcFD$spFunction1
  3. def compose[A](g: (A) ⇒ Any): (A) ⇒ Any

    Composes two instances of Function1 in a new Function1, with this function applied last.

    Composes two instances of Function1 in a new Function1, with this function applied last.

    A

    the type to which function g can be applied

    g

    a function A => T1

    returns

    a new function f such that f(x) == apply(g(x))

    Definition Classes
    Function1
    Annotations
    @unspecialized()
  4. 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
    Function1 → AnyRef → Any