scala.scalajs.js.RegExp

ExecResult

trait ExecResult extends Array[String]

Annotations
@RawJSType()
Linear Supertypes
Array[String], Object, Any, AnyRef, scala.Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ExecResult
  2. Array
  3. Object
  4. Any
  5. AnyRef
  6. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

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. def apply(index: Number): String

    Access the element at the given index.

    Access the element at the given index.

    Definition Classes
    Array
    Annotations
    @JSBracketAccess()
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def concat(item: String, items: String*): Array[String]

    concat creates a new array consisting of the elements in the this object on which it is called, followed in order by, for each argument, the elements of that argument (if the argument is an array) or the argument itself (if the argument is not an array).

    concat creates a new array consisting of the elements in the this object on which it is called, followed in order by, for each argument, the elements of that argument (if the argument is an array) or the argument itself (if the argument is not an array).

    MDN

    Definition Classes
    Array
  9. def concat(items: Array[String]*): Array[String]

    concat creates a new array consisting of the elements in the this object on which it is called, followed in order by, for each argument, the elements of that argument (if the argument is an array) or the argument itself (if the argument is not an array).

    concat creates a new array consisting of the elements in the this object on which it is called, followed in order by, for each argument, the elements of that argument (if the argument is an array) or the argument itself (if the argument is not an array).

    MDN

    Definition Classes
    Array
  10. final def eq(arg0: AnyRef): scala.Boolean

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

    Definition Classes
    AnyRef → Any
  12. def every(callbackfn: Function3[String, Number, Array[String], Boolean]): Boolean

    Definition Classes
    Array
  13. def every[T](callbackfn: ThisFunction3[T, String, Number, Array[String], Boolean], thisArg: T): Boolean

    The every method executes the provided callback function once for each element present in the array until it finds one where callback returns a falsy value (a value that becomes false when converted to a Boolean).

    The every method executes the provided callback function once for each element present in the array until it finds one where callback returns a falsy value (a value that becomes false when converted to a Boolean). If such an element is found, the every method immediately returns false. Otherwise, if callback returned a true value for all elements, every will return true. callback is invoked only for indexes of the array which have assigned values; it is not invoked for indexes which have been deleted or which have never been assigned values.

    callback is invoked with three arguments:

    - the value of the element - the index of the element - and the Array object being traversed.

    If a thisObject parameter is provided to every, it will be used as the this for each invocation of the callback. If it is not provided, or is null, the global object associated with callback is used instead.

    every does not mutate the array on which it is called.

    every acts like the "for all" quantifier in mathematics. In particular, for an empty array, it returns true. (It is vacuously true that all elements of the empty set satisfy any given condition.)

    MDN

    Definition Classes
    Array
  14. def filter(callbackfn: Function1[String, Boolean]): Array[String]

    Definition Classes
    Array
  15. def filter(callbackfn: Function2[String, Number, Boolean]): Array[String]

    Definition Classes
    Array
  16. def filter(callbackfn: Function3[String, Number, Array[String], Boolean]): Array[String]

    Definition Classes
    Array
  17. def filter[T](callbackfn: ThisFunction3[T, String, Number, Array[String], Boolean], thisArg: T): Array[String]

    filter calls a provided callback function once for each element in an array, and constructs a new array of all the values for which callback returns a true value.

    filter calls a provided callback function once for each element in an array, and constructs a new array of all the values for which callback returns a true value. callback is invoked only for indexes of the array which have assigned values; it is not invoked for indexes which have been deleted or which have never been assigned values. Array elements which do not pass the callback test are simply skipped, and are not included in the new array.

    callback is invoked with three arguments:

    - the value of the element - the index of the element - the Array object being traversed

    If a thisObject parameter is provided to filter, it will be used as the this for each invocation of the callback. If it is not provided, or is null, the global object associated with callback is used instead.

    filter does not mutate the array on which it is called.

    MDN

    Definition Classes
    Array
  18. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def forEach(callbackfn: Function1[String, _]): Unit

    Definition Classes
    Array
  20. def forEach(callbackfn: Function2[String, Number, _]): Unit

    Definition Classes
    Array
  21. def forEach(callbackfn: Function3[String, Number, Array[String], _]): Unit

    Definition Classes
    Array
  22. def forEach[T](callbackfn: ThisFunction3[T, String, Number, Array[String], _], thisArg: T): Unit

    forEach executes the provided callback once for each element of the array with an assigned value.

    forEach executes the provided callback once for each element of the array with an assigned value. It is not invoked for indexes which have been deleted or which have been initialized to undefined.

    callback is invoked with three arguments:

    - the element value - the element index - the array being traversed

    If a thisArg parameter is provided to forEach, it will be used as the this value for each callback invocation as if callback.call(thisArg, element, index, array) was called. If thisArg is undefined or null, the this value within the function depends on whether the function is in strict mode or not (passed value if in strict mode, global object if in non-strict mode).

    MDN

    Definition Classes
    Array
  23. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  24. 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
  25. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  26. var index: Number

  27. def indexOf(searchElement: String): Number

    Definition Classes
    Array
  28. def indexOf(searchElement: String, fromIndex: Number): Number

    The indexOf() method returns the first index at which a given element can be found in the array, or -1 if it is not present.

    The indexOf() method returns the first index at which a given element can be found in the array, or -1 if it is not present.

    MDN

    Definition Classes
    Array
  29. var input: String

  30. final def isInstanceOf[T0]: scala.Boolean

    Definition Classes
    Any
  31. 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
  32. def join(seperator: String = ","): String

    The join() method joins all elements of an array into a string.

    The join() method joins all elements of an array into a string.

    separator Specifies a string to separate each element of the array. The separator is converted to a string if necessary. If omitted, the array elements are separated with a comma.

    Definition Classes
    Array
  33. def lastIndexOf(searchElement: String): Number

    Definition Classes
    Array
  34. def lastIndexOf(searchElement: String, fromIndex: Number): Number

    The lastIndexOf() method returns the last index at which a given element can be found in the array, or -1 if it is not present.

    The lastIndexOf() method returns the last index at which a given element can be found in the array, or -1 if it is not present. The array is searched backwards, starting at fromIndex.

    MDN

    Definition Classes
    Array
  35. def length: Number

    Length of the array.

    Length of the array.

    Definition Classes
    Array
  36. def map[B](callbackfn: Function1[String, B]): Array[B]

    Definition Classes
    Array
  37. def map[B](callbackfn: Function2[String, Number, B]): Array[B]

    Definition Classes
    Array
  38. def map[B](callbackfn: Function3[String, Number, Array[String], B]): Array[B]

    Definition Classes
    Array
  39. def map[B, T](callbackfn: ThisFunction3[T, String, Number, Array[String], B], thisArg: T): Array[B]

    map calls a provided callback function once for each element in an array, in order, and constructs a new array from the results.

    map calls a provided callback function once for each element in an array, in order, and constructs a new array from the results. callback is invoked only for indexes of the array which have assigned values; it is not invoked for indexes which have been deleted or which have never been assigned values.

    callback is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.

    If a thisArg parameter is provided to map, it will be used as the this for each invocation of the callback. If it is not provided, or is null, the global object associated with callback is used instead.

    map does not mutate the array on which it is called.

    MDN

    Definition Classes
    Array
  40. final def ne(arg0: AnyRef): scala.Boolean

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

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

    Definition Classes
    AnyRef
  43. def pop(): String

    The pop() method removes the last element from an array and returns that element.

    The pop() method removes the last element from an array and returns that element.

    MDN

    Definition Classes
    Array
  44. 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
  45. def push(items: String*): Number

    The push() method mutates an array by appending the given elements and returning the new length of the array.

    The push() method mutates an array by appending the given elements and returning the new length of the array.

    MDN

    Definition Classes
    Array
  46. def reduce[B](callbackfn: Function2[B, String, B]): B

    Definition Classes
    Array
  47. def reduce[B](callbackfn: Function3[B, String, Number, B]): B

    Definition Classes
    Array
  48. def reduce[B](callbackfn: Function4[B, String, Number, Array[String], B]): B

    Definition Classes
    Array
  49. def reduce[B](callbackfn: Function2[B, String, B], initialValue: B): B

    Definition Classes
    Array
  50. def reduce[B](callbackfn: Function3[B, String, Number, B], initialValue: B): B

    Definition Classes
    Array
  51. def reduce[B](callbackfn: Function4[B, String, Number, Array[String], B], initialValue: B): B

    reduce executes the callback function once for each element present in the array, excluding holes in the array, receiving four arguments: the initial value (or value from the previous callback call), the value of the current element, the current index, and the array over which iteration is occurring.

    reduce executes the callback function once for each element present in the array, excluding holes in the array, receiving four arguments: the initial value (or value from the previous callback call), the value of the current element, the current index, and the array over which iteration is occurring.

    The first time the callback is called, previousValue and currentValue can be one of two values. If initialValue is provided in the call to reduce, then previousValue will be equal to initialValue and currentValue will be equal to the first value in the array. If no initialValue was provided, then previousValue will be equal to the first value in the array and currentValue will be equal to the second.

    MDN

    Definition Classes
    Array
  52. def reduceRight[B](callbackfn: Function2[B, String, B]): B

    Definition Classes
    Array
  53. def reduceRight[B](callbackfn: Function3[B, String, Number, B]): B

    Definition Classes
    Array
  54. def reduceRight[B](callbackfn: Function4[B, String, Number, Array[String], B]): B

    Definition Classes
    Array
  55. def reduceRight[B](callbackfn: Function2[B, String, B], initialValue: B): B

    Definition Classes
    Array
  56. def reduceRight[B](callbackfn: Function3[B, String, Number, B], initialValue: B): B

    Definition Classes
    Array
  57. def reduceRight[B](callbackfn: Function4[B, String, Number, Array[String], B], initialValue: B): B

    reduceRight executes the callback function once for each element present in the array, excluding holes in the array, receiving four arguments: the initial value (or value from the previous callback call), the value of the current element, the current index, and the array over which iteration is occurring.

    reduceRight executes the callback function once for each element present in the array, excluding holes in the array, receiving four arguments: the initial value (or value from the previous callback call), the value of the current element, the current index, and the array over which iteration is occurring.

    MDN

    Definition Classes
    Array
  58. def reverse(): Array[String]

    The reverse() method reverses an array in place.

    The reverse() method reverses an array in place. The first array element becomes the last and the last becomes the first.

    MDN

    Definition Classes
    Array
  59. def shift(): String

    The shift() method removes the first element from an array and returns that element.

    The shift() method removes the first element from an array and returns that element. This method changes the length of the array.

    MDN

    Definition Classes
    Array
  60. def slice(start: Number): Array[String]

    Definition Classes
    Array
  61. def slice(start: Number, end: Number): Array[String]

    The slice() method returns a shallow copy of a portion of an array.

    The slice() method returns a shallow copy of a portion of an array.

    MDN

    Definition Classes
    Array
  62. def some(callbackfn: Function1[String, Boolean]): Boolean

    Definition Classes
    Array
  63. def some(callbackfn: Function2[String, Number, Boolean]): Boolean

    Definition Classes
    Array
  64. def some(callbackfn: Function3[String, Number, Array[String], Boolean]): Boolean

    Definition Classes
    Array
  65. def some[T](callbackfn: ThisFunction3[T, String, Number, Array[String], Boolean], thisArg: T): Boolean

    some executes the callback function once for each element present in the array until it finds one where callback returns a true value.

    some executes the callback function once for each element present in the array until it finds one where callback returns a true value. If such an element is found, some immediately returns true. Otherwise, some returns false. callback is invoked only for indexes of the array which have assigned values; it is not invoked for indexes which have been deleted or which have never been assigned values.

    callback is invoked with three arguments: the value of the element, the index of the element, and the Array object being traversed.

    If a thisObject parameter is provided to some, it will be used as the this for each invocation of the callback. If it is not provided, or is null, the global object associated with callback is used instead.

    some does not mutate the array on which it is called.

    MDN

    Definition Classes
    Array
  66. def sort(compareFn: Function2[String, String, Number] = ???): Array[String]

    The sort() method sorts the elements of an array in place and returns the array.

    The sort() method sorts the elements of an array in place and returns the array. The sort is not necessarily stable. The default sort order is lexicographic (not numeric).

    If compareFunction is not supplied, elements are sorted by converting them to strings and comparing strings in lexicographic ("dictionary" or "telephone book," not numerical) order. For example, "80" comes before "9" in lexicographic order, but in a numeric sort 9 comes before 80.

    MDN

    Definition Classes
    Array
  67. def splice(index: Number, deleteCount: Number, items: String*): Array[String]

    The splice() method changes the content of an array, adding new elements while removing old elements.

    The splice() method changes the content of an array, adding new elements while removing old elements.

    MDN

    Definition Classes
    Array
  68. def splice(index: Number): Array[String]

    The splice() method changes the content of an array, adding new elements while removing old elements.

    The splice() method changes the content of an array, adding new elements while removing old elements.

    MDN

    Definition Classes
    Array
  69. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  70. def toLocaleString(): String

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

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

    Definition Classes
    Any
  73. def unshift(items: String*): Number

    The unshift() method adds one or more elements to the beginning of an array and returns the new length of the array.

    The unshift() method adds one or more elements to the beginning of an array and returns the new length of the array.

    MDN

    Definition Classes
    Array
  74. def update(index: Number, value: String): Unit

    Set the element at the given index.

    Set the element at the given index.

    Definition Classes
    Array
    Annotations
    @JSBracketAccess()
  75. def valueOf(): Any

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Array[String]

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

Ungrouped