scala.scalajs.js

ThisFunction9

trait ThisFunction9[-T0, -T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, +R] extends Function with ThisFunction

Annotations
@RawJSType()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ThisFunction9
  2. ThisFunction
  3. Function
  4. Object
  5. Any
  6. AnyRef
  7. Any
Implicitly
  1. by toFunction10
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(thisArg: T0, arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5, arg6: T6, arg7: T7, arg8: T8, arg9: T9): R

Concrete Value Members

  1. final def !=(arg0: scala.Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to any2stringadd[ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R], B)

    Implicit information
    This member is added by an implicit conversion from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to ArrowAssoc[ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: scala.Any): Boolean

    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def bind(thisArg: Any, argArray: Any*): Dynamic

    The bind() method creates a new function that, when called, has its this keyword set to the provided value, with a given sequence of arguments preceding any provided when the new function is called.

    The bind() method creates a new function that, when called, has its this keyword set to the provided value, with a given sequence of arguments preceding any provided when the new function is called.

    MDN

    Definition Classes
    Function
  8. def call(thisArg: Any, argArray: Any*): Dynamic

    The call() method calls a function with a given this value and arguments provided individually.

    The call() method calls a function with a given this value and arguments provided individually.

    You can assign a different this object when calling an existing function. this refers to the current object, the calling object. With call, you can write a method once and then inherit it in another object, without having to rewrite the method for the new object.

    apply is very similar to call(), except for the type of arguments it supports. You can use an arguments array instead of a named set of parameters. With apply, you can use an array literal, for example,

    fun.apply(this, ['eat', 'bananas'])

    or an Array object, for example,

    fun.apply(this, new Array('eat', 'bananas')).

    MDN

    Scala.js-specific note: call() can be used instead of the apply() method available in JavaScript. Simply use the :_* notation to expand a Seq as variadic arguments, e.g.,

    someFun.call(thisArg, argSeq: _*)
    Definition Classes
    Function
  9. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def curried: (T0) ⇒ (T1) ⇒ (T2) ⇒ (T3) ⇒ (T4) ⇒ (T5) ⇒ (T6) ⇒ (T7) ⇒ (T8) ⇒ (T9) ⇒ R

    Implicit information
    This member is added by an implicit conversion from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9) ⇒ R performed by method toFunction10 in scala.scalajs.js.ThisFunction.
    Definition Classes
    Function10
    Annotations
    @unspecialized()
  11. def ensuring(cond: (ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]) ⇒ Boolean, msg: ⇒ scala.Any): ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]

    Implicit information
    This member is added by an implicit conversion from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to Ensuring[ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]) ⇒ Boolean): ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]

    Implicit information
    This member is added by an implicit conversion from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to Ensuring[ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ scala.Any): ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]

    Implicit information
    This member is added by an implicit conversion from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to Ensuring[ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]

    Implicit information
    This member is added by an implicit conversion from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to Ensuring[ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  16. def equals(arg0: scala.Any): Boolean

    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to StringFormat[ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def hasOwnProperty(v: String): Boolean

    Tests whether this object has the specified property as a direct property.

    Tests whether this object has the specified property as a direct property.

    Unlike js.Object.hasProperty, this method does not check down the object's prototype chain.

    MDN

    Definition Classes
    Object
  21. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. def isPrototypeOf(v: Object): Boolean

    Tests whether this object is in the prototype chain of another object.

    Tests whether this object is in the prototype chain of another object.

    Definition Classes
    Object
  24. val length: Int

    length is a property of a function object, and indicates how many arguments the function expects, i.e.

    length is a property of a function object, and indicates how many arguments the function expects, i.e. the number of formal parameters. This number does not include the rest parameter. By contrast, arguments.length is local to a function and provides the number of arguments actually passed to the function.

    MDN

    Definition Classes
    Function
  25. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  28. def propertyIsEnumerable(v: String): Boolean

    Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain.

    Tests whether the specified property in an object can be enumerated by a call to js.Object.properties, with the exception of properties inherited through the prototype chain. If the object does not have the specified property, this method returns false.

    MDN

    Definition Classes
    Object
  29. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  30. def toLocaleString(): String

    Definition Classes
    Object
  31. def toString(): String

    Definition Classes
    AnyRef → Any
  32. def tupled: ((T0, T1, T2, T3, T4, T5, T6, T7, T8, T9)) ⇒ R

    Implicit information
    This member is added by an implicit conversion from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9) ⇒ R performed by method toFunction10 in scala.scalajs.js.ThisFunction.
    Definition Classes
    Function10
    Annotations
    @unspecialized()
  33. def valueOf(): scala.Any

    Definition Classes
    Object
  34. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. def [B](y: B): (ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R], B)

    Implicit information
    This member is added by an implicit conversion from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to ArrowAssoc[ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def apply(v1: T0, v2: T1, v3: T2, v4: T3, v5: T4, v6: T5, v7: T6, v8: T7, v9: T8, v10: T9): R

    Implicit information
    This member is added by an implicit conversion from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9) ⇒ R performed by method toFunction10 in scala.scalajs.js.ThisFunction.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (thisFunction9: (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9) ⇒ R).apply(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10)
    Definition Classes
    Function10
  2. def toString(): String

    Implicit information
    This member is added by an implicit conversion from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9) ⇒ R performed by method toFunction10 in scala.scalajs.js.ThisFunction.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (thisFunction9: (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9) ⇒ R).toString()
    Definition Classes
    Function10 → AnyRef → Any

Inherited from ThisFunction

Inherited from Function

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion toFunction10 from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to (T0, T1, T2, T3, T4, T5, T6, T7, T8, T9) ⇒ R

Inherited by implicit conversion any2stringadd from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to any2stringadd[ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]]

Inherited by implicit conversion StringFormat from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to StringFormat[ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]]

Inherited by implicit conversion Ensuring from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to Ensuring[ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]]

Inherited by implicit conversion ArrowAssoc from ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R] to ArrowAssoc[ThisFunction9[T0, T1, T2, T3, T4, T5, T6, T7, T8, T9, R]]

Ungrouped