Packages

c

scala.jdk.FunctionWrappers

FromJavaObjDoubleConsumer

case class FromJavaObjDoubleConsumer[T](jf: ObjDoubleConsumer[T]) extends (T, Double) => Unit with Product with Serializable

Source
FunctionWrappers.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FromJavaObjDoubleConsumer
  2. Serializable
  3. Product
  4. Equals
  5. Function2
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new FromJavaObjDoubleConsumer(jf: ObjDoubleConsumer[T])

Value Members

  1. def apply(x1: T, x2: Double): Unit

    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
    FromJavaObjDoubleConsumerFunction2
  2. def curried: (T) => (Double) => Unit

    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. val jf: ObjDoubleConsumer[T]
  4. def productElementNames: Iterator[String]

    An iterator over the names of all the elements of this product.

    An iterator over the names of all the elements of this product.

    Definition Classes
    Product
  5. 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
  6. def tupled: ((T, Double)) => Unit

    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()