trait RegExpExecArray extends scala.scalajs.js.Object with StObject with Array[java.lang.String]
- Annotations
- @JSType() @native()
- Source
- RegExpExecArray.scala
- Alphabetic
- By Inheritance
- RegExpExecArray
- Array
- NumberDictionary
- StObject
- Object
- Any
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- final def !=(arg0: Any): scala.Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): scala.Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- def concat(items: |[scala.scalajs.js.Array[java.lang.String], java.lang.String]*): scala.scalajs.js.Array[java.lang.String]
Combines two or more arrays.
Combines two or more arrays. This method returns a new array without modifying any existing arrays.
- items
Additional arrays and/or items to add to the end of the array.
- Definition Classes
- Array
- def copyWithin(target: Double, start: Double, end: Double): RegExpExecArray.this.type
- Definition Classes
- Array
- def copyWithin(target: Double, start: Double): RegExpExecArray.this.type
Returns the this object after copying a section of the array identified by start and end to the same array starting at position target
Returns the this object after copying a section of the array identified by start and end to the same array starting at position target
- target
If target is negative, it is treated as length+target where length is the length of the array.
- start
If start is negative, it is treated as length+start. If end is negative, it is treated as length+end.
- Definition Classes
- Array
- def entries(): IterableIterator[Tuple2[Double, java.lang.String]]
Returns an iterable of key, value pairs for every entry in the array
Returns an iterable of key, value pairs for every entry in the array
- Definition Classes
- Array
- final def eq(arg0: AnyRef): scala.Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): scala.Boolean
- Definition Classes
- AnyRef → Any
- def every(predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], Any], thisArg: Any): scala.Boolean
- Definition Classes
- Array
- def every(predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], Any]): scala.Boolean
Determines whether all the members of an array satisfy the specified test.
Determines whether all the members of an array satisfy the specified test.
- predicate
A function that accepts up to three arguments. The every method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value false, or until the end of the array.
- Definition Classes
- Array
- def every_S_T[S](predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], scala.Boolean], thisArg: Any): scala.Boolean
- Definition Classes
- Array
- Annotations
- @JSName("every")
- def every_S_T[S](predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], scala.Boolean]): scala.Boolean
Determines whether all the members of an array satisfy the specified test.
Determines whether all the members of an array satisfy the specified test.
- predicate
A function that accepts up to three arguments. The every method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value false, or until the end of the array.
- Definition Classes
- Array
- Annotations
- @JSName("every")
- def fill(value: java.lang.String, start: Unit, end: Double): RegExpExecArray.this.type
- Definition Classes
- Array
- def fill(value: java.lang.String, start: Double, end: Double): RegExpExecArray.this.type
- Definition Classes
- Array
- def fill(value: java.lang.String, start: Double): RegExpExecArray.this.type
- Definition Classes
- Array
- def fill(value: java.lang.String): RegExpExecArray.this.type
Returns the this object after filling the section identified by start and end with value
Returns the this object after filling the section identified by start and end with value
- value
value to fill array section with
- Definition Classes
- Array
- def filter(predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], Any], thisArg: Any): scala.scalajs.js.Array[java.lang.String]
- Definition Classes
- Array
- def filter(predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], Any]): scala.scalajs.js.Array[java.lang.String]
Returns the elements of an array that meet the condition specified in a callback function.
Returns the elements of an array that meet the condition specified in a callback function.
- predicate
A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.
- Definition Classes
- Array
- def filter_S_T[S](predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], scala.Boolean], thisArg: Any): scala.scalajs.js.Array[S]
- Definition Classes
- Array
- Annotations
- @JSName("filter")
- def filter_S_T[S](predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], scala.Boolean]): scala.scalajs.js.Array[S]
Returns the elements of an array that meet the condition specified in a callback function.
Returns the elements of an array that meet the condition specified in a callback function.
- predicate
A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array.
- Definition Classes
- Array
- Annotations
- @JSName("filter")
- def find[S](predicate: ThisFunction3[Unit, java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], scala.Boolean], thisArg: Any): UndefOr[S]
- Definition Classes
- Array
- def find[S](predicate: ThisFunction3[Unit, java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], scala.Boolean]): UndefOr[S]
Returns the value of the first element in the array where predicate is true, and undefined otherwise.
Returns the value of the first element in the array where predicate is true, and undefined otherwise.
- predicate
find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, find immediately returns that element value. Otherwise, find returns undefined.
- Definition Classes
- Array
- def find(predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], Any], thisArg: Any): UndefOr[java.lang.String]
- Definition Classes
- Array
- def find(predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], Any]): UndefOr[java.lang.String]
- Definition Classes
- Array
- def findIndex(predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], Any], thisArg: Any): Double
- Definition Classes
- Array
- def findIndex(predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], Any]): Double
Returns the index of the first element in the array where predicate is true, and -1 otherwise.
Returns the index of the first element in the array where predicate is true, and -1 otherwise.
- predicate
find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, findIndex immediately returns that element index. Otherwise, findIndex returns -1.
- Definition Classes
- Array
- def flat[A, D](depth: D): scala.scalajs.js.Array[FlatArray[A, D]]
- Definition Classes
- Array
- def flat[A, D](): scala.scalajs.js.Array[FlatArray[A, D]]
Returns a new array with all sub-array elements concatenated into it recursively up to the specified depth.
Returns a new array with all sub-array elements concatenated into it recursively up to the specified depth.
- Definition Classes
- Array
- def flatMap[U, This](callback: ThisFunction3[This, java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], |[U, scala.scalajs.js.Array[U]]], thisArg: This): scala.scalajs.js.Array[U]
- Definition Classes
- Array
- def flatMap[U, This](callback: ThisFunction3[This, java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], |[U, scala.scalajs.js.Array[U]]]): scala.scalajs.js.Array[U]
Calls a defined callback function on each element of an array.
Calls a defined callback function on each element of an array. Then, flattens the result into a new array. This is identical to a map followed by flat with depth 1.
- callback
A function that accepts up to three arguments. The flatMap method calls the callback function one time for each element in the array.
- Definition Classes
- Array
- def forEach(callbackfn: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], Unit], thisArg: Any): Unit
- Definition Classes
- Array
- def forEach(callbackfn: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], Unit]): Unit
Performs the specified action for each element in an array.
Performs the specified action for each element in an array.
- callbackfn
A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
- Definition Classes
- Array
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- val groups: UndefOr[StringDictionary[java.lang.String]]
- def hasOwnProperty(v: scala.Predef.String): scala.Boolean
- Definition Classes
- Object
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def includes(searchElement: java.lang.String, fromIndex: Double): scala.Boolean
- Definition Classes
- Array
- def includes(searchElement: java.lang.String): scala.Boolean
Determines whether an array includes a certain element, returning true or false as appropriate.
Determines whether an array includes a certain element, returning true or false as appropriate.
- searchElement
The element to search for.
- Definition Classes
- Array
- val index: Double
- def indexOf(searchElement: java.lang.String, fromIndex: Double): Double
- Definition Classes
- Array
- def indexOf(searchElement: java.lang.String): Double
Returns the index of the first occurrence of a value in an array, or -1 if it is not present.
Returns the index of the first occurrence of a value in an array, or -1 if it is not present.
- searchElement
The value to locate in the array.
- Definition Classes
- Array
- val input: java.lang.String
- final def isInstanceOf[T0]: scala.Boolean
- Definition Classes
- Any
- def isPrototypeOf(v: scala.scalajs.js.Object): scala.Boolean
- Definition Classes
- Object
- val iterator: Function0[IterableIterator[java.lang.String]]
Iterator
Iterator
- Definition Classes
- Array
- Annotations
- @JSName(js.Symbol.iterator)
- def join(separator: java.lang.String): java.lang.String
- Definition Classes
- Array
- def join(): java.lang.String
Adds all the elements of an array into a string, separated by the specified separator string.
Adds all the elements of an array into a string, separated by the specified separator string.
- Definition Classes
- Array
- def keys(): IterableIterator[Double]
Returns an iterable of keys in the array
Returns an iterable of keys in the array
- Definition Classes
- Array
- def lastIndexOf(searchElement: java.lang.String, fromIndex: Double): Double
- Definition Classes
- Array
- def lastIndexOf(searchElement: java.lang.String): Double
Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present.
Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present.
- searchElement
The value to locate in the array.
- Definition Classes
- Array
- val length: Double
Gets or sets the length of the array.
Gets or sets the length of the array. This is a number one higher than the highest index in the array.
- Definition Classes
- Array
- def map[U](callbackfn: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], U], thisArg: Any): scala.scalajs.js.Array[U]
- Definition Classes
- Array
- def map[U](callbackfn: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], U]): scala.scalajs.js.Array[U]
Calls a defined callback function on each element of an array, and returns an array that contains the results.
Calls a defined callback function on each element of an array, and returns an array that contains the results.
- callbackfn
A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.
- Definition Classes
- Array
- final def ne(arg0: AnyRef): scala.Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def pop(): UndefOr[java.lang.String]
Removes the last element from an array and returns it.
Removes the last element from an array and returns it. If the array is empty, undefined is returned and the array is not modified.
- Definition Classes
- Array
- def propertyIsEnumerable(v: scala.Predef.String): scala.Boolean
- Definition Classes
- Object
- def push(items: java.lang.String*): Double
Appends new elements to the end of an array, and returns the new length of the array.
Appends new elements to the end of an array, and returns the new length of the array.
- items
New elements to add to the array.
- Definition Classes
- Array
- def reduce(callbackfn: Function4[java.lang.String, java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], java.lang.String], initialValue: java.lang.String): java.lang.String
- Definition Classes
- Array
- def reduce(callbackfn: Function4[java.lang.String, java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], java.lang.String]): java.lang.String
Calls the specified callback function for all the elements in an array.
Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
- callbackfn
A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
- Definition Classes
- Array
- def reduceRight(callbackfn: Function4[java.lang.String, java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], java.lang.String], initialValue: java.lang.String): java.lang.String
- Definition Classes
- Array
- def reduceRight(callbackfn: Function4[java.lang.String, java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], java.lang.String]): java.lang.String
Calls the specified callback function for all the elements in an array, in descending order.
Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
- callbackfn
A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
- Definition Classes
- Array
- def reduceRight_U_U[U](callbackfn: Function4[U, java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], U], initialValue: U): U
Calls the specified callback function for all the elements in an array, in descending order.
Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
- callbackfn
A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array.
- initialValue
If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
- Definition Classes
- Array
- Annotations
- @JSName("reduceRight")
- def reduce_U_U[U](callbackfn: Function4[U, java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], U], initialValue: U): U
Calls the specified callback function for all the elements in an array.
Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.
- callbackfn
A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array.
- initialValue
If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value.
- Definition Classes
- Array
- Annotations
- @JSName("reduce")
- def reverse(): scala.scalajs.js.Array[java.lang.String]
Reverses the elements in an array in place.
Reverses the elements in an array in place. This method mutates the array and returns a reference to the same array.
- Definition Classes
- Array
- def shift(): UndefOr[java.lang.String]
Removes the first element from an array and returns it.
Removes the first element from an array and returns it. If the array is empty, undefined is returned and the array is not modified.
- Definition Classes
- Array
- def slice(start: Unit, end: Double): scala.scalajs.js.Array[java.lang.String]
- Definition Classes
- Array
- def slice(start: Double, end: Double): scala.scalajs.js.Array[java.lang.String]
- Definition Classes
- Array
- def slice(start: Double): scala.scalajs.js.Array[java.lang.String]
- Definition Classes
- Array
- def slice(): scala.scalajs.js.Array[java.lang.String]
Returns a copy of a section of an array.
Returns a copy of a section of an array. For both start and end, a negative index can be used to indicate an offset from the end of the array. For example, -2 refers to the second to last element of the array.
- Definition Classes
- Array
- def some(predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], Any], thisArg: Any): scala.Boolean
- Definition Classes
- Array
- def some(predicate: Function3[java.lang.String, Double, scala.scalajs.js.Array[java.lang.String], Any]): scala.Boolean
Determines whether the specified callback function returns true for any element of an array.
Determines whether the specified callback function returns true for any element of an array.
- predicate
A function that accepts up to three arguments. The some method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value true, or until the end of the array.
- Definition Classes
- Array
- def sort(compareFn: Function2[java.lang.String, java.lang.String, Double]): RegExpExecArray.this.type
- Definition Classes
- Array
- def sort(): RegExpExecArray.this.type
Sorts an array in place.
Sorts an array in place. This method mutates the array and returns a reference to the same array.
- Definition Classes
- Array
- def splice(start: Double, deleteCount: Double, items: java.lang.String*): scala.scalajs.js.Array[java.lang.String]
Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
- start
The zero-based location in the array from which to start removing elements.
- deleteCount
The number of elements to remove.
- items
Elements to insert into the array in place of the deleted elements.
- Definition Classes
- Array
- def splice(start: Double, deleteCount: Double): scala.scalajs.js.Array[java.lang.String]
- Definition Classes
- Array
- def splice(start: Double): scala.scalajs.js.Array[java.lang.String]
Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.
- start
The zero-based location in the array from which to start removing elements.
- Definition Classes
- Array
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toLocaleString(): scala.Predef.String
- Definition Classes
- Object
- def toString(): java.lang.String
- Definition Classes
- AnyRef → Any
- val unscopables: Function0[CopyWithin]
Returns an object whose properties have the value 'true' when they will be absent when used in a 'with' statement.
Returns an object whose properties have the value 'true' when they will be absent when used in a 'with' statement.
- Definition Classes
- Array
- Annotations
- @JSName(js.Symbol.unscopables)
- def unshift(items: java.lang.String*): Double
Inserts new elements at the start of an array, and returns the new length of the array.
Inserts new elements at the start of an array, and returns the new length of the array.
- items
Elements to insert at the start of the array.
- Definition Classes
- Array
- def valueOf(): Any
- Definition Classes
- Object
- def values(): IterableIterator[java.lang.String]
Returns an iterable of values in the array
Returns an iterable of values in the array
- Definition Classes
- Array
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated