scala.scalajs.js

ThisFunction6

trait ThisFunction6[-T0, -T1, -T2, -T3, -T4, -T5, -T6, +R] extends Function with ThisFunction

Annotations
@RawJSType()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ThisFunction6
  2. ThisFunction
  3. Function
  4. Object
  5. Any
  6. AnyRef
  7. Any
  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): R

Concrete Value Members

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

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

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

    Definition Classes
    Any
  4. final def ==(arg0: scala.Any): scala.Boolean

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

    Definition Classes
    Any
  6. 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
  7. 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
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. final def eq(arg0: AnyRef): scala.Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

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

    Every object descended from Object inherits the hasOwnProperty method.

    Every object descended from Object inherits the hasOwnProperty method. This method can be used to determine whether an object has the specified property as a direct property of that object; unlike the in operator, this method does not check down the object's prototype chain.

    MDN

    Definition Classes
    Object
  14. def hashCode(): Int

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

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

    The isPrototypeOf mehtod allows you to check whether or not an object exists within another object's prototype chain.

    The isPrototypeOf mehtod allows you to check whether or not an object exists within another object's prototype chain.

    MDN

    Definition Classes
    Object
  17. val length: Number

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

    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
  18. final def ne(arg0: AnyRef): scala.Boolean

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

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

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

    Every object has a propertyIsEnumerable method.

    Every object has a propertyIsEnumerable method. This method can determine whether the specified property in an object can be enumerated by a for...in loop, 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
  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  23. def toLocaleString(): String

    Definition Classes
    Object
  24. def toString(): java.lang.String

    Definition Classes
    AnyRef → Any
  25. def unary_!(): Boolean

    Definition Classes
    Any
  26. def valueOf(): Any

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from ThisFunction

Inherited from Function

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

Ungrouped