Packages

  • package root
    Definition Classes
    root
  • package scala
    Definition Classes
    root
  • package scalajs
    Definition Classes
    scala
  • package js

    Types, methods and values for interoperability with JavaScript libraries.

    Types, methods and values for interoperability with JavaScript libraries.

    This package is only relevant to the Scala.js compiler, and should not be referenced by any project compiled to the JVM.

    Guide

    General documentation on Scala.js is available at http://www.scala-js.org/doc/.

    Overview

    The trait js.Any is the root of the hierarchy of JavaScript types. This package defines important subtypes of js.Any that are defined in the standard library of ECMAScript 5.1 (or ES 6, with a label in the documentation), such as js.Object, js.Array and js.RegExp.

    Implicit conversions to and from standard Scala types to their equivalent in JavaScript are provided. For example, from Scala functions to JavaScript functions and back.

    The most important subtypes of js.Any declared in this package are:

    The trait js.Dynamic is a special subtrait of js.Any. It can represent any JavaScript value in a dynamically-typed way. It is possible to call any method and read and write any field of a value of type js.Dynamic.

    There are no explicit definitions for JavaScript primitive types, as one could expect, because the corresponding Scala types stand in their stead:

    • Boolean is the type of primitive JavaScript booleans
    • Double is the type of primitive JavaScript numbers
    • String is the type of primitive JavaScript strings (or null)
    • Unit is the type of the JavaScript undefined value
    • Null is the type of the JavaScript null value

    js.UndefOr gives a scala.Option-like interface where the JavaScript value undefined takes the role of None.

    A | B is an unboxed pseudo-union type, suitable to type values that admit several unrelated types in facade types.

    Definition Classes
    scalajs
  • object RegExp extends Object
    Definition Classes
    js
    Annotations
    @native() @JSGlobal()
  • ExecResult

trait ExecResult extends Array[UndefOr[String]]

Annotations
@RawJSType() @native()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExecResult
  2. Array
  3. Iterable
  4. Object
  5. Any
  6. AnyRef
  7. Any
Implicitly
  1. by jsArrayOps
  2. by wrapArray
  3. by iterableOps
  4. by arrayAsIterable
  5. by any2undefOrA
  6. by any2undefOrUnion
  7. by any2stringadd
  8. by StringFormat
  9. by Ensuring
  10. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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
    This member is added by an implicit conversion from ExecResult toany2stringadd[ExecResult] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: A](ys: Array[_ <: B]): Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  5. final def ++[B >: A](ys: collection.IterableOnce[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  6. final def ++[B >: A](suffix: collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @inline()
  7. final def ++[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @inline()
  8. final def ++[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @inline()
  9. final def ++:[B >: A](prefix: Array[_ <: B]): Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  10. final def ++:[B >: A](prefix: collection.IterableOnce[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  11. final def ++:[B >: A](prefix: collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps → IterableOps
    Annotations
    @inline()
  12. final def +:[B >: A](x: B): Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  13. final def +:[B >: A](elem: B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @inline()
  14. def ->[B](y: B): (ExecResult, B)
    Implicit
    This member is added by an implicit conversion from ExecResult toArrowAssoc[ExecResult] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  15. final def :+[B >: A](x: B): Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  16. final def :+[B >: A](elem: B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @inline()
  17. final def :++[B >: A](suffix: Array[_ <: B]): Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  18. final def :++[B >: A](suffix: collection.IterableOnce[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  19. final def :++[B >: A](suffix: collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @inline()
  20. final def ==(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  21. def andThen[C](k: (UndefOr[String]) ⇒ C): PartialFunction[Int, C]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction → Function1
  22. def appended[B >: A](x: B): Array[B]

    A copy of this array with an element appended.

    A copy of this array with an element appended.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  23. def appended[B >: A](elem: B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  24. def appendedAll[B >: A](suffix: Array[_ <: B]): Array[B]

    A copy of this array with all elements of an array appended.

    A copy of this array with all elements of an array appended.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  25. def appendedAll[B >: A](suffix: collection.IterableOnce[B]): Array[B]

    A copy of this array with all elements of a collection appended.

    A copy of this array with all elements of a collection appended.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  26. def appendedAll[B >: A](suffix: collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  27. def apply(index: Int): UndefOr[String]

    Access the element at the given index.

    Access the element at the given index.

    Definition Classes
    Array
    Annotations
    @JSBracketAccess()
  28. def applyOrElse[A1 <: A, B1 >: B](x: A1, default: (A1) ⇒ B1): B1
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  29. val array: Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedArray
  30. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  31. def canEqual(that: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Seq → Equals
  32. def className: String
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedArray → Iterable
    Annotations
    @inline()
  33. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.CloneNotSupportedException])
  34. def collect[B](pf: PartialFunction[UndefOr[String], B]): Array[B]

    Builds a new array by applying a partial function to all elements of this array on which the function is defined.

    Builds a new array by applying a partial function to all elements of this array on which the function is defined.

    B

    the element type of the returned array.

    pf

    the partial function which filters and maps the array.

    returns

    a new array resulting from applying the given partial function pf to each element on which it is defined and collecting the results. The order of the elements is preserved.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  35. def collect[B](pf: PartialFunction[UndefOr[String], B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  36. def collectFirst[B](f: PartialFunction[UndefOr[String], B]): Option[B]

    Finds the first element of the array for which the given partial function is defined, and applies the partial function to it.

    Finds the first element of the array for which the given partial function is defined, and applies the partial function to it.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  37. def compose[A](g: (A) ⇒ Int): (A) ⇒ UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  38. def concat[B >: UndefOr[String]](items: Array[_ <: B]*): Array[B]

    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
  39. def containsSlice[B](that: collection.Seq[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  40. def copyToArray[B >: A](dest: scala.Array[B], start: Int, len: Int = Int.MaxValue): Int

    Copy elements of this array to a Scala array.

    Copy elements of this array to a Scala array.

    Fills the given array dest starting at index start with at most len values. Copying will stop once either all the elements of this array have been copied, or the end of the array is reached, or len elements have been copied.

    B

    the type of the elements of the array.

    dest

    the array to fill.

    start

    the starting index.

    len

    the maximal number of elements to copy.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  41. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  42. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  43. def copyToArray[B >: A](xs: scala.Array[B]): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  44. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  45. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  46. def copyToArray[B >: A](xs: scala.Array[B]): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  47. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  48. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  49. def copyToArray[B >: A](xs: scala.Array[B]): Int
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  50. def corresponds[B](that: collection.Seq[B])(p: (UndefOr[String], B) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  51. def distinctBy[B](f: (UndefOr[String]) ⇒ B): Array[UndefOr[String]]

    Selects all the elements of this array ignoring the duplicates as determined by == after applying the transforming function f.

    Selects all the elements of this array ignoring the duplicates as determined by == after applying the transforming function f.

    B

    the type of the elements after being transformed by f

    f

    The transforming function whose result is used to determine the uniqueness of each element

    returns

    a new array consisting of all the elements of this array without duplicates.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  52. def distinctBy[B](f: (UndefOr[String]) ⇒ B): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  53. def endsWith[B >: A](that: collection.Iterable[B]): Boolean

    Tests whether this array ends with the given sequence.

    Tests whether this array ends with the given sequence.

    that

    the sequence to test

    returns

    true if this array has that as a suffix, false otherwise.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  54. def endsWith[B >: A](that: Array[B]): Boolean

    Tests whether this array ends with the given array.

    Tests whether this array ends with the given array.

    that

    the array to test

    returns

    true if this array has that as a suffix, false otherwise.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  55. def endsWith[B >: A](that: collection.Iterable[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  56. def ensuring(cond: (ExecResult) ⇒ Boolean, msg: ⇒ scala.Any): ExecResult
    Implicit
    This member is added by an implicit conversion from ExecResult toEnsuring[ExecResult] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  57. def ensuring(cond: (ExecResult) ⇒ Boolean): ExecResult
    Implicit
    This member is added by an implicit conversion from ExecResult toEnsuring[ExecResult] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  58. def ensuring(cond: Boolean, msg: ⇒ scala.Any): ExecResult
    Implicit
    This member is added by an implicit conversion from ExecResult toEnsuring[ExecResult] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  59. def ensuring(cond: Boolean): ExecResult
    Implicit
    This member is added by an implicit conversion from ExecResult toEnsuring[ExecResult] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  60. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  61. def equals(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  62. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  63. def flatMap[BS, B](f: (UndefOr[String]) ⇒ BS)(implicit asIterable: (BS) ⇒ collection.Iterable[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  64. def flatMap[B](f: (UndefOr[String]) ⇒ collection.IterableOnce[B]): Array[B]

    Builds a new array by applying a function to all elements of this array and using the elements of the resulting collections.

    Builds a new array by applying a function to all elements of this array and using the elements of the resulting collections.

    B

    the element type of the returned array.

    f

    the function to apply to each element.

    returns

    a new array resulting from applying the given collection-valued function f to each element of this array and concatenating the results.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  65. def flatMap[B](f: (UndefOr[String]) ⇒ collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  66. def flatten[B](implicit asIterable: (UndefOr[String]) ⇒ collection.Iterable[B]): Array[B]

    Flattens a two-dimensional array by concatenating all its rows into a single array.

    Flattens a two-dimensional array by concatenating all its rows into a single array.

    B

    Type of row elements.

    asIterable

    A function that converts elements of this array to rows - Iterables of type B.

    returns

    An array obtained by concatenating rows of this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  67. def flatten[B](implicit toIterableOnce: (UndefOr[String]) ⇒ collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  68. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1

    Folds the elements of this array using the specified associative binary operator.

    Folds the elements of this array using the specified associative binary operator.

    A1

    a type parameter for the binary operator, a supertype of A.

    z

    a neutral element for the fold operation; may be added to the result an arbitrary number of times, and must not change the result (e.g., Nil for list concatenation, 0 for addition, or 1 for multiplication).

    op

    a binary operator that must be associative.

    returns

    the result of applying the fold operator op between all the elements, or z if this array is empty.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  69. def foldLeft[B](z: B)(op: (B, UndefOr[String]) ⇒ B): B

    Applies a binary operator to a start value and all elements of this array, going left to right.

    Applies a binary operator to a start value and all elements of this array, going left to right.

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this array, going left to right with the start value z on the left:

    op(...op(z, x_1), x_2, ..., x_n)

    where x1, ..., xn are the elements of this array. Returns z if this array is empty.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  70. def foldRight[B](z: B)(op: (UndefOr[String], B) ⇒ B): B

    Applies a binary operator to all elements of this array and a start value, going right to left.

    Applies a binary operator to all elements of this array and a start value, going right to left.

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this array, going right to left with the start value z on the right:

    op(x_1, op(x_2, ... op(x_n, z)...))

    where x1, ..., xn are the elements of this array. Returns z if this array is empty.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  71. def foreach[U](f: (UndefOr[String]) ⇒ U): Unit

    Apply f to each element for its side effects.

    Apply f to each element for its side effects.

    Note: [U] parameter needed to help scalac's type inference.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  72. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult toStringFormat[ExecResult] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  73. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  74. def groupBy[K](f: (UndefOr[String]) ⇒ K): Map[K, Array[UndefOr[String]]]

    Partitions this array into a map of arrays according to some discriminator function.

    Partitions this array into a map of arrays according to some discriminator function.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to arrays such that the following invariant holds:

    (xs groupBy f)(k) = xs filter (x => f(x) == k)

    That is, every key k is bound to an array of those elements x for which f(x) equals k.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  75. def groupMap[K, B](key: (UndefOr[String]) ⇒ K)(f: (UndefOr[String]) ⇒ B): Map[K, Array[B]]

    Partitions this array into a map of arrays according to a discriminator function key.

    Partitions this array into a map of arrays according to a discriminator function key.

    Each element in a group is transformed into a value of type B using the value function.

    It is equivalent to groupBy(key).mapValues(_.map(f)), but more efficient.

    case class User(name: String, age: Int)
    
    def namesByAge(users: js.Array[User]): Map[Int, js.Array[String]] =
      users.groupMap(_.age)(_.name)
    K

    the type of keys returned by the discriminator function

    B

    the type of values returned by the transformation function

    key

    the discriminator function

    f

    the element transformation function

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  76. 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
  77. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  78. val index: Int
  79. def indexOf[B >: A](elem: B): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOf(elem, from) instead - indexOf(elem) calls indexOf(elem, 0)", "2.13.0")
  80. def indexOfSlice[B >: A](that: collection.Seq[B]): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexOfSlice(that, from) instead - indexOfSlice(that) calls indexOfSlice(that, 0)", "2.13.0")
  81. def indexOfSlice[B >: A](that: collection.Seq[B], from: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  82. def indexWhere(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override indexWhere(p, from) instead - indexWhere(p) calls indexWhere(p, 0)", "2.13.0")
  83. val input: String
  84. def isDefinedAt(idx: Int): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  85. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  86. 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
  87. 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
  88. def jsIterator(): Iterator[UndefOr[String]]

    ECMAScript 6 JavaScript Iterator for this Array.

    ECMAScript 6 JavaScript Iterator for this Array.

    Definition Classes
    ArrayIterable
    Annotations
    @JSName(Symbol.iterator)
  89. def jsSlice(start: Int = 0, end: Int = Int.MaxValue): Array[UndefOr[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
    Annotations
    @JSName("slice")
  90. def lastIndexOfSlice[B >: A](that: collection.Seq[B]): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexOfSlice(that, end) instead - lastIndexOfSlice(that) calls lastIndexOfSlice(that, Int.MaxValue)", "2.13.0")
  91. def lastIndexOfSlice[B >: A](that: collection.Seq[B], end: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  92. def lastIndexWhere(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecatedOverriding("Override lastIndexWhere(p, end) instead - lastIndexWhere(p) calls lastIndexWhere(p, Int.MaxValue)", "2.13.0")
  93. def length: Int

    Length of the array.

    Length of the array.

    Definition Classes
    Array
  94. final def lengthIs: SizeCompareOps
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @inline()
  95. def length_=(v: Int): Unit

    Sets the length of the array.

    Sets the length of the array. If the new length is bigger than the old length, created slots are filled with undefined (irrespective of the type argument A!). If the new length is smaller than the old length, the array is shrunk.

    Definition Classes
    Array
  96. def lift: (Int) ⇒ Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  97. def map[B](f: (UndefOr[String]) ⇒ B): Array[B]

    Builds a new array by applying a function to all elements of this array.

    Builds a new array by applying a function to all elements of this array.

    B

    the element type of the returned array.

    f

    the function to apply to each element.

    returns

    a new aray resulting from applying the given function f to each element of this array and collecting the results.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  98. def map[B](f: (UndefOr[String]) ⇒ B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  99. def mapResult[NewTo](f: (WrappedArray[UndefOr[String]]) ⇒ NewTo): Builder[UndefOr[String], NewTo]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  100. def max[B >: A](implicit ord: math.Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  101. def max[B >: A](implicit ord: math.Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  102. def max[B >: A](implicit ord: math.Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  103. def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  104. def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  105. def maxOption[B >: A](implicit ord: math.Ordering[B]): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  106. def min[B >: A](implicit ord: math.Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  107. def min[B >: A](implicit ord: math.Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  108. def min[B >: A](implicit ord: math.Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  109. def minOption[B >: A](implicit ord: math.Ordering[B]): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  110. def minOption[B >: A](implicit ord: math.Ordering[B]): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  111. def minOption[B >: A](implicit ord: math.Ordering[B]): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  112. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  113. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  114. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  115. def orElse[A1 <: A, B1 >: B](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  116. def padTo[B >: A](len: Int, elem: B): Array[B]

    A copy of this array with an element value appended until a given target length is reached.

    A copy of this array with an element value appended until a given target length is reached.

    B

    the element type of the returned array.

    len

    the target length

    elem

    the padding value

    returns

    a new array consisting of all elements of this array followed by the minimal number of occurrences of elem so that the resulting collection has a length of at least len.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  117. def padTo[B >: A](len: Int, elem: B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  118. def partitionWith[A1, A2](f: (UndefOr[String]) ⇒ Either[A1, A2]): (WrappedArray[A1], WrappedArray[A2])
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  119. def patch[B >: A](from: Int, other: collection.IterableOnce[B], replaced: Int): Array[B]

    Returns a copy of this array with patched values.

    Returns a copy of this array with patched values.

    Patching at negative indices is the same as patching starting at 0. Patching at indices at or larger than the length of the original array appends the patch to the end. If more values are replaced than actually exist, the excess is ignored.

    from

    The start index from which to patch

    other

    The patch values

    replaced

    The number of values in the original array that are replaced by the patch.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  120. def patch[B >: A](from: Int, other: collection.IterableOnce[B], replaced: Int): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  121. def pop(): UndefOr[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
  122. def prepended[B >: A](x: B): Array[B]

    A copy of this array with an element prepended.

    A copy of this array with an element prepended.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  123. def prepended[B >: A](elem: B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps → SeqOps
  124. def prependedAll[B >: A](prefix: Array[_ <: B]): Array[B]

    A copy of this array with all elements of an array prepended.

    A copy of this array with all elements of an array prepended.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  125. def prependedAll[B >: A](prefix: collection.IterableOnce[B]): Array[B]

    A copy of this array with all elements of a collection prepended.

    A copy of this array with all elements of a collection prepended.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  126. def prependedAll[B >: A](prefix: collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedSeqOps → SeqOps
  127. def product[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  128. def product[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  129. def product[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  130. 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
  131. def push(items: UndefOr[String]*): Int

    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
  132. def reduce[B >: A](op: (B, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  133. def reduce[B >: A](op: (B, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  134. def reduce[B >: A](op: (B, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  135. def reduceLeft[B >: A](op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  136. def reduceLeft[B >: A](op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  137. def reduceLeft[B >: A](op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  138. def reduceLeftOption[B >: A](op: (B, UndefOr[String]) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  139. def reduceLeftOption[B >: A](op: (B, UndefOr[String]) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  140. def reduceLeftOption[B >: A](op: (B, UndefOr[String]) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  141. def reduceOption[B >: A](op: (B, B) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  142. def reduceOption[B >: A](op: (B, B) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  143. def reduceOption[B >: A](op: (B, B) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  144. def reduceRight[B >: A](op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  145. def reduceRight[B >: A](op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  146. def reduceRight[B >: A](op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  147. def reduceRightOption[B >: A](op: (UndefOr[String], B) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  148. def reduceRightOption[B >: A](op: (UndefOr[String], B) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  149. def reduceRightOption[B >: A](op: (UndefOr[String], B) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  150. def result(): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedArray → Builder
    Annotations
    @inline()
  151. def reverseInPlace(): Array[UndefOr[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
    Annotations
    @JSName("reverse")
  152. def runWith[U](action: (UndefOr[String]) ⇒ U): (Int) ⇒ Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  153. def sameElements[B >: A](that: collection.IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  154. def scan[B >: A](z: B)(op: (B, B) ⇒ B): Array[B]

    Computes a prefix scan of the elements of the array.

    Computes a prefix scan of the elements of the array.

    Note: The neutral element z may be applied more than once.

    B

    element type of the resulting array

    z

    neutral element for the operator op

    op

    the associative operator for the scan

    returns

    a new array containing the prefix scan of the elements in this array

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  155. def scanLeft[B](z: B)(op: (B, UndefOr[String]) ⇒ B): Array[B]

    Produces an array containing cumulative results of applying the binary operator going left to right.

    Produces an array containing cumulative results of applying the binary operator going left to right.

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

    array with intermediate values. Example:

    js.Array(1, 2, 3, 4).scanLeft(0)(_ + _) == js.Array(0, 1, 3, 6, 10)
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  156. def scanLeft[B](z: B)(op: (B, UndefOr[String]) ⇒ B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  157. def scanRight[B](z: B)(op: (UndefOr[String], B) ⇒ B): Array[B]

    Produces an array containing cumulative results of applying the binary operator going right to left.

    Produces an array containing cumulative results of applying the binary operator going right to left.

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

    array with intermediate values. Example:

    js.Array(4, 3, 2, 1).scanRight(0)(_ + _) == js.Array(10, 6, 3, 1, 0)
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  158. def search[B >: A](elem: B, from: Int, to: Int)(implicit ord: math.Ordering[B]): SearchResult
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps → SeqOps
  159. def search[B >: A](elem: B)(implicit ord: math.Ordering[B]): SearchResult
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps → SeqOps
  160. def segmentLength(p: (UndefOr[String]) ⇒ Boolean, from: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  161. def shift(): UndefOr[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
  162. final def sizeHint(coll: collection.IterableOnce[_], delta: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  163. def sizeHint(size: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  164. final def sizeHintBounded(size: Int, boundingColl: collection.Iterable[_]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  165. def sort(compareFn: Function2[UndefOr[String], UndefOr[String], Int] = ???): Array[UndefOr[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
  166. def sortBy[B](f: (UndefOr[String]) ⇒ B)(implicit ord: Ordering[B]): Array[UndefOr[String]]

    Sorts this array according to the Ordering which results from transforming an implicitly given Ordering with a transformation function.

    Sorts this array according to the Ordering which results from transforming an implicitly given Ordering with a transformation function.

    B

    the target type of the transformation f, and the type where the ordering ord is defined.

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

    an array consisting of the elements of this array sorted according to the ordering where x < y if ord.lt(f(x), f(y)).

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    See also

    scala.math.Ordering

  167. def sortBy[B](f: (UndefOr[String]) ⇒ B)(implicit ord: Ordering[B]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  168. def sortInPlace[B >: A]()(implicit ord: math.Ordering[B]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps
  169. def sortInPlaceBy[B](f: (UndefOr[String]) ⇒ B)(implicit ord: math.Ordering[B]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps
  170. def sortInPlaceWith(lt: (UndefOr[String], UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOps
  171. def sorted[B >: A](implicit ord: Ordering[B]): Array[UndefOr[String]]

    Sorts this array according to an Ordering.

    Sorts this array according to an Ordering.

    The sort is stable. That is, elements that are equal (as determined by lt) appear in the same order in the sorted sequence as in the original.

    ord

    the ordering to be used to compare elements.

    returns

    an array consisting of the elements of this array sorted according to the ordering ord.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    See also

    scala.math.Ordering

  172. def sorted[B >: A](implicit ord: Ordering[B]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  173. def splice(index: Int, deleteCount: Int, items: UndefOr[String]*): Array[UndefOr[String]]

    Removes and adds new elements at a given index in the array.

    Removes and adds new elements at a given index in the array.

    This method first removes deleteCount elements starting from the index index, then inserts the new elements items at that index.

    If index is negative, it is treated as that number of elements starting from the end of the array.

    index

    Index where to start changes

    deleteCount

    Number of elements to delete from index

    items

    Elements to insert at index

    returns

    An array of the elements that were deleted

    Definition Classes
    Array
  174. def startsWith[B >: A](that: collection.IterableOnce[B], offset: Int = 0): Boolean

    Tests whether this array contains the given sequence at a given index.

    Tests whether this array contains the given sequence at a given index.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

    true if the sequence that is contained in this array at index offset, otherwise false.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  175. def startsWith[B >: A](that: Array[B], offset: Int): Boolean

    Tests whether this array contains the given array at a given index.

    Tests whether this array contains the given array at a given index.

    that

    the array to test

    offset

    the index where the array is searched.

    returns

    true if the array that is contained in this array at index offset, otherwise false.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  176. def startsWith[B >: A](that: Array[B]): Boolean

    Tests whether this array starts with the given array.

    Tests whether this array starts with the given array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  177. def startsWith[B >: A](that: collection.IterableOnce[B], offset: Int): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  178. def sum[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  179. def sum[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  180. def sum[B >: A](implicit num: math.Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  181. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  182. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]

    Create a copy of this array as a Scala array.

    Create a copy of this array as a Scala array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  183. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  184. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  185. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
  186. def toLocaleString(): String
    Definition Classes
    Object
  187. def toString(): String
    Definition Classes
    AnyRef → Any
  188. def transpose[B](implicit asArray: (UndefOr[String]) ⇒ Array[B]): Array[Array[B]]

    Transposes a two dimensional array.

    Transposes a two dimensional array.

    B

    Type of row elements.

    asArray

    A function that converts elements of this array to rows - arrays of type B.

    returns

    An array obtained by replacing elements of this arrays with rows the represent.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  189. def unshift(items: UndefOr[String]*): Int

    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
  190. def unzip[A1, A2](implicit asPair: (UndefOr[String]) ⇒ (A1, A2)): (Array[A1], Array[A2])

    Converts an array of pairs into an array of first elements and an array of second elements.

    Converts an array of pairs into an array of first elements and an array of second elements.

    A1

    the type of the first half of the element pairs

    A2

    the type of the second half of the element pairs

    asPair

    an implicit conversion which asserts that the element type of this array is a pair.

    returns

    a pair of Arrays, containing, respectively, the first and second half of each element pair of this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  191. def unzip[A1, A2](implicit asPair: (UndefOr[String]) ⇒ (A1, A2)): (WrappedArray[A1], WrappedArray[A2])
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  192. def unzip3[A1, A2, A3](implicit asTriple: (UndefOr[String]) ⇒ (A1, A2, A3)): (Array[A1], Array[A2], Array[A3])

    Converts an array of triples into three arrays, one containing the elements from each position of the triple.

    Converts an array of triples into three arrays, one containing the elements from each position of the triple.

    A1

    the type of the first of three elements in the triple

    A2

    the type of the second of three elements in the triple

    A3

    the type of the third of three elements in the triple

    asTriple

    an implicit conversion which asserts that the element type of this array is a triple.

    returns

    a triple of Arrays, containing, respectively, the first, second, and third elements from each element triple of this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  193. def unzip3[A1, A2, A3](implicit asTriple: (UndefOr[String]) ⇒ (A1, A2, A3)): (WrappedArray[A1], WrappedArray[A2], WrappedArray[A3])
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  194. def update(index: Int, value: UndefOr[String]): Unit

    Set the element at the given index.

    Set the element at the given index.

    Definition Classes
    Array
    Annotations
    @JSBracketAccess()
  195. def updated[B >: A](index: Int, elem: B): Array[B]

    A copy of this array with one single replaced element.

    A copy of this array with one single replaced element.

    index

    the position of the replacement

    elem

    the replacing element

    returns

    a new array which is a copy of this array with the element at position index replaced by elem.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Exceptions thrown

    IndexOutOfBoundsException if index does not satisfy 0 <= index < length.

  196. def updated[B >: A](index: Int, elem: B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
  197. def valueOf(): scala.Any
    Definition Classes
    Object
  198. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  199. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  200. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.InterruptedException])
  201. def zip[B](that: collection.IterableOnce[B]): Array[(UndefOr[String], B)]

    Returns an array formed from this array and another iterable collection by combining corresponding elements in pairs.

    Returns an array formed from this array and another iterable collection by combining corresponding elements in pairs.

    If one of the two collections is longer than the other, its remaining elements are ignored.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    returns

    a new array containing pairs consisting of corresponding elements of this array and that. The length of the returned array is the minimum of the lengths of this array and that.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  202. def zip[B](that: collection.IterableOnce[B]): WrappedArray[(UndefOr[String], B)]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  203. def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): Array[(A1, B)]

    Returns an array formed from this array and another iterable collection by combining corresponding elements in pairs.

    Returns an array formed from this array and another iterable collection by combining corresponding elements in pairs.

    If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    that

    the iterable providing the second half of each result pair

    thisElem

    the element to be used to fill up the result if this array is shorter than that.

    thatElem

    the element to be used to fill up the result if that is shorter than this array.

    returns

    a new array containing pairs consisting of corresponding elements of this array and that. The length of the returned array is the maximum of the lengths of this array and that. If this array is shorter than that, thisElem values are used to pad the result. If that is shorter than this array, thatElem values are used to pad the result.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
  204. def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): WrappedArray[(A1, B)]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
  205. def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.Iterable[(A1, B)]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  206. def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.Iterable[(A1, B)]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
  207. def [B](y: B): (ExecResult, B)
    Implicit
    This member is added by an implicit conversion from ExecResult toArrowAssoc[ExecResult] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. final def ++=(ys: collection.IterableOnce[UndefOr[String]]): Array[UndefOr[String]]

    Alias for addAll

    Alias for addAll

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).++=(ys)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  2. final def ++=(xs: collection.IterableOnce[UndefOr[String]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).++=(xs)
    Definition Classes
    Growable
    Annotations
    @inline()
  3. final def ++=:(elems: collection.IterableOnce[UndefOr[String]]): Array[UndefOr[String]]

    Alias for prependAll

    Alias for prependAll

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).++=:(elems)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  4. final def ++=:(elems: collection.IterableOnce[UndefOr[String]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).++=:(elems)
    Definition Classes
    Buffer
    Annotations
    @inline()
  5. final def +=(elem: UndefOr[String]): Array[UndefOr[String]]

    Alias for addOne

    Alias for addOne

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).+=(elem)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  6. final def +=(elem: UndefOr[String]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).+=(elem)
    Definition Classes
    Growable
    Annotations
    @inline()
  7. final def +=:(elem: UndefOr[String]): Array[UndefOr[String]]

    Alias for prepend

    Alias for prepend

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).+=:(elem)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  8. final def +=:(elem: UndefOr[String]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).+=:(elem)
    Definition Classes
    Buffer
    Annotations
    @inline()
  9. final def --=(ys: collection.IterableOnce[UndefOr[String]]): Array[UndefOr[String]]

    Alias for subtractAll

    Alias for subtractAll

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).--=(ys)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  10. final def --=(xs: collection.IterableOnce[UndefOr[String]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).--=(xs)
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  11. final def -=(elem: UndefOr[String]): Array[UndefOr[String]]

    Alias for subtractOne

    Alias for subtractOne

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).-=(elem)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  12. def -=(elem1: UndefOr[String], elem2: UndefOr[String], elems: UndefOr[String]*): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).-=(elem1, elem2, elems)
    Definition Classes
    Shrinkable
  13. final def -=(elem: UndefOr[String]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).-=(elem)
    Definition Classes
    Shrinkable
    Annotations
    @inline()
  14. def addAll(ys: collection.IterableOnce[UndefOr[String]]): Array[UndefOr[String]]

    Adds all elements produced by an IterableOnce to this array.

    Adds all elements produced by an IterableOnce to this array.

    returns

    the array itself.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).addAll(ys)
    Definition Classes
    ArrayOps
  15. def addAll(xs: collection.IterableOnce[UndefOr[String]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).addAll(xs)
    Definition Classes
    Growable
  16. def addOne(elem: UndefOr[String]): Array[UndefOr[String]]

    Appends a single element to this array.

    Appends a single element to this array.

    elem

    the element to add.

    returns

    the array itself

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).addOne(elem)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  17. def addOne(elem: UndefOr[String]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).addOne(elem)
    Definition Classes
    WrappedArray → Growable
    Annotations
    @inline()
  18. final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).addString(b)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  19. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).addString(b, sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  20. def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).addString(b, start, sep, end)
    Definition Classes
    IterableOnceOps
  21. final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).addString(b)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  22. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).addString(b, sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  23. def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).addString(b, start, sep, end)
    Definition Classes
    IterableOnceOps
  24. final def addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).addString(b)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  25. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).addString(b, sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  26. def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): collection.mutable.StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).addString(b, start, sep, end)
    Definition Classes
    IterableOnceOps
  27. final def append(elem: UndefOr[String]): Array[UndefOr[String]]

    Appends the given element to this array.

    Appends the given element to this array.

    elem

    the element to append.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).append(elem)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  28. final def append(elem: UndefOr[String]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).append(elem)
    Definition Classes
    Buffer
    Annotations
    @inline()
  29. final def appendAll(ys: collection.IterableOnce[UndefOr[String]]): Array[UndefOr[String]]

    Appends the elements contained in an iterable object to this array.

    Appends the elements contained in an iterable object to this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).appendAll(ys)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  30. final def appendAll(xs: collection.IterableOnce[UndefOr[String]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).appendAll(xs)
    Definition Classes
    Buffer
    Annotations
    @inline()
  31. def apply(index: Int): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (execResult: WrappedArray[UndefOr[String]]).apply(index)
    Definition Classes
    WrappedArray → SeqOps → Function1
    Annotations
    @inline()
  32. def clear(): Unit

    Clears the array's contents.

    Clears the array's contents.

    After this operation, the array is empty.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).clear()
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  33. def clear(): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).clear()
    Definition Classes
    WrappedArray → Builder → Clearable
    Annotations
    @inline()
  34. def clone(): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (execResult: WrappedArray[UndefOr[String]]).clone()
    Definition Classes
    SeqOps → Cloneable → AnyRef
  35. def collect[B](pf: PartialFunction[UndefOr[String], B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).collect(pf)
    Definition Classes
    IterableOps → IterableOnceOps
  36. def collect[B](pf: PartialFunction[UndefOr[String], B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).collect(pf)
    Definition Classes
    IterableOps → IterableOnceOps
  37. def collectFirst[B](pf: PartialFunction[UndefOr[String], B]): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).collectFirst(pf)
    Definition Classes
    IterableOnceOps
  38. def collectFirst[B](pf: PartialFunction[UndefOr[String], B]): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).collectFirst(pf)
    Definition Classes
    IterableOnceOps
  39. def collectFirst[B](pf: PartialFunction[UndefOr[String], B]): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).collectFirst(pf)
    Definition Classes
    IterableOnceOps
  40. def combinations(n: Int): collection.Iterator[Array[UndefOr[String]]]

    Iterates over combinations.

    Iterates over combinations.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).combinations(n)
    Definition Classes
    ArrayOps
  41. def combinations(n: Int): collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).combinations(n)
    Definition Classes
    SeqOps
  42. def concat[B >: A](suffix: collection.IterableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (execResult: WrappedArray[UndefOr[String]]).concat(suffix)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  43. def concat[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    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:
    (execResult: IterableOps[UndefOr[String]]).concat(suffix)
    Definition Classes
    IterableOps
  44. def concat[B >: A](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    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:
    (execResult: collection.Iterable[UndefOr[String]]).concat(suffix)
    Definition Classes
    IterableOps
  45. def contains(elem: UndefOr[String]): Boolean

    Tests whether this array contains a given value as an element.

    Tests whether this array contains a given value as an element.

    elem

    the element to test.

    returns

    true if this array has an element that is equal (as determined by ==) to elem, false otherwise.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).contains(elem)
    Definition Classes
    ArrayOps
  46. def contains[A1 >: A](elem: A1): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).contains(elem)
    Definition Classes
    SeqOps
  47. def corresponds[B](that: collection.IterableOnce[B])(p: (UndefOr[String], B) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).corresponds(that)(p)
    Definition Classes
    IterableOnceOps
  48. def corresponds[B](that: collection.IterableOnce[B])(p: (UndefOr[String], B) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).corresponds(that)(p)
    Definition Classes
    IterableOnceOps
  49. def corresponds[B](that: collection.IterableOnce[B])(p: (UndefOr[String], B) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).corresponds(that)(p)
    Definition Classes
    IterableOnceOps
  50. def count(p: (UndefOr[String]) ⇒ Boolean): Int

    Counts the number of elements in this array which satisfy a predicate.

    Counts the number of elements in this array which satisfy a predicate.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).count(p)
    Definition Classes
    ArrayOps
  51. def count(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).count(p)
    Definition Classes
    IterableOnceOps
  52. def count(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).count(p)
    Definition Classes
    IterableOnceOps
  53. def count(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).count(p)
    Definition Classes
    IterableOnceOps
  54. def diff(that: Seq[_ >: UndefOr[String]]): Array[UndefOr[String]]

    Computes the multiset difference between this array and another sequence.

    Computes the multiset difference between this array and another sequence.

    that

    the sequence of elements to remove

    returns

    a new array which contains all elements of this array except some of occurrences of elements that also appear in that. If an element value x appears n times in that, then the first n occurrences of x will not form part of the result, but any following occurrences will.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).diff(that)
    Definition Classes
    ArrayOps
  55. def diff(that: collection.Seq[_ >: UndefOr[String]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).diff(that)
    Definition Classes
    SeqOps
  56. def distinct: Array[UndefOr[String]]

    Selects all the elements of this array ignoring the duplicates.

    Selects all the elements of this array ignoring the duplicates.

    returns

    a new array consisting of all the elements of this array without duplicates.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).distinct
    Definition Classes
    ArrayOps
  57. def distinct: WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).distinct
    Definition Classes
    SeqOps
  58. def drop(n: Int): Array[UndefOr[String]]

    The rest of the array without its n first elements.

    The rest of the array without its n first elements.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).drop(n)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  59. def drop(n: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).drop(n)
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  60. def drop(n: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).drop(n)
    Definition Classes
    IterableOps → IterableOnceOps
  61. def drop(n: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).drop(n)
    Definition Classes
    IterableOps → IterableOnceOps
  62. def dropInPlace(n: Int): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).dropInPlace(n)
    Definition Classes
    ArrayOps
  63. def dropInPlace(n: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).dropInPlace(n)
    Definition Classes
    Buffer
  64. def dropRight(n: Int): Array[UndefOr[String]]

    The rest of the array without its n last elements.

    The rest of the array without its n last elements.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).dropRight(n)
    Definition Classes
    ArrayOps
  65. def dropRight(n: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).dropRight(n)
    Definition Classes
    IndexedSeqOps → IterableOps
  66. def dropRight(n: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).dropRight(n)
    Definition Classes
    IterableOps
  67. def dropRight(n: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).dropRight(n)
    Definition Classes
    IterableOps
  68. def dropRightInPlace(n: Int): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).dropRightInPlace(n)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  69. def dropRightInPlace(n: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).dropRightInPlace(n)
    Definition Classes
    Buffer
  70. def dropWhile(p: (UndefOr[String]) ⇒ Boolean): Array[UndefOr[String]]

    Drops the longest prefix of elements that satisfy a predicate.

    Drops the longest prefix of elements that satisfy a predicate.

    p

    The predicate used to test elements.

    returns

    the longest suffix of this array whose first element does not satisfy the predicate p.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).dropWhile(p)
    Definition Classes
    ArrayOps
  71. def dropWhile(p: (UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).dropWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  72. def dropWhile(p: (UndefOr[String]) ⇒ Boolean): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).dropWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  73. def dropWhile(p: (UndefOr[String]) ⇒ Boolean): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).dropWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  74. def dropWhileInPlace(p: (UndefOr[String]) ⇒ Boolean): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).dropWhileInPlace(p)
    Definition Classes
    ArrayOps
  75. def dropWhileInPlace(p: (UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).dropWhileInPlace(p)
    Definition Classes
    Buffer
  76. def equals(o: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (execResult: WrappedArray[UndefOr[String]]).equals(o)
    Definition Classes
    Seq → Equals → AnyRef → Any
  77. def exists(f: (UndefOr[String]) ⇒ Boolean): Boolean

    Tests whether a predicate holds for at least one element of this array.

    Tests whether a predicate holds for at least one element of this array.

    returns

    true if the given predicate p is satisfied by at least one element of this array, otherwise false

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).exists(f)
    Definition Classes
    ArrayOps
  78. def exists(p: (UndefOr[String]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).exists(p)
    Definition Classes
    IterableOnceOps
  79. def exists(p: (UndefOr[String]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).exists(p)
    Definition Classes
    IterableOnceOps
  80. def exists(p: (UndefOr[String]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).exists(p)
    Definition Classes
    IterableOnceOps
  81. def filter(p: (UndefOr[String]) ⇒ Boolean): Array[UndefOr[String]]

    Selects all elements of this array which satisfy a predicate.

    Selects all elements of this array which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new array consisting of all elements of this array that satisfy the given predicate p.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).filter(p)
    Definition Classes
    ArrayOps
  82. def filter(pred: (UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).filter(pred)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  83. def filter(pred: (UndefOr[String]) ⇒ Boolean): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).filter(pred)
    Definition Classes
    IterableOps → IterableOnceOps
  84. def filter(pred: (UndefOr[String]) ⇒ Boolean): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).filter(pred)
    Definition Classes
    IterableOps → IterableOnceOps
  85. def filterInPlace(p: (UndefOr[String]) ⇒ Boolean): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).filterInPlace(p)
    Definition Classes
    ArrayOps
  86. def filterInPlace(p: (UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).filterInPlace(p)
    Definition Classes
    IndexedBuffer
  87. def filterNot(p: (UndefOr[String]) ⇒ Boolean): Array[UndefOr[String]]

    Selects all elements of this array which do not satisfy a predicate.

    Selects all elements of this array which do not satisfy a predicate.

    returns

    a new array consisting of all elements of this array that do not satisfy the given predicate pred.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).filterNot(p)
    Definition Classes
    ArrayOps
  88. def filterNot(pred: (UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).filterNot(pred)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  89. def filterNot(pred: (UndefOr[String]) ⇒ Boolean): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).filterNot(pred)
    Definition Classes
    IterableOps → IterableOnceOps
  90. def filterNot(pred: (UndefOr[String]) ⇒ Boolean): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).filterNot(pred)
    Definition Classes
    IterableOps → IterableOnceOps
  91. def find(f: (UndefOr[String]) ⇒ Boolean): Option[UndefOr[String]]

    Finds the first element of the array satisfying a predicate, if any.

    Finds the first element of the array satisfying a predicate, if any.

    returns

    an option value containing the first element in the array that satisfies p, or None if none exists.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).find(f)
    Definition Classes
    ArrayOps
  92. def find(p: (UndefOr[String]) ⇒ Boolean): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).find(p)
    Definition Classes
    IterableOnceOps
  93. def find(p: (UndefOr[String]) ⇒ Boolean): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).find(p)
    Definition Classes
    IterableOnceOps
  94. def find(p: (UndefOr[String]) ⇒ Boolean): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).find(p)
    Definition Classes
    IterableOnceOps
  95. def flatMap[B](f: (UndefOr[String]) ⇒ collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).flatMap(f)
    Definition Classes
    IterableOps → IterableOnceOps
  96. def flatMap[B](f: (UndefOr[String]) ⇒ collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).flatMap(f)
    Definition Classes
    IterableOps → IterableOnceOps
  97. def flatMapInPlace(f: (UndefOr[String]) ⇒ collection.IterableOnce[UndefOr[String]]): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).flatMapInPlace(f)
    Definition Classes
    ArrayOps
  98. def flatMapInPlace(f: (UndefOr[String]) ⇒ collection.IterableOnce[UndefOr[String]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).flatMapInPlace(f)
    Definition Classes
    IndexedBuffer
  99. def flatten[B](implicit asIterable: (UndefOr[String]) ⇒ collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).flatten(asIterable)
    Definition Classes
    IterableOps → IterableOnceOps
  100. def flatten[B](implicit asIterable: (UndefOr[String]) ⇒ collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).flatten(asIterable)
    Definition Classes
    IterableOps → IterableOnceOps
  101. def foldLeft[B](z: B)(op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).foldLeft(z)(op)
    Definition Classes
    IterableOnceOps
  102. def foldLeft[B](z: B)(op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).foldLeft(z)(op)
    Definition Classes
    IterableOnceOps
  103. def foldLeft[B](z: B)(op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).foldLeft(z)(op)
    Definition Classes
    IterableOnceOps
  104. def foldRight[B](z: B)(op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).foldRight(z)(op)
    Definition Classes
    IterableOnceOps
  105. def foldRight[B](z: B)(op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).foldRight(z)(op)
    Definition Classes
    IterableOnceOps
  106. def foldRight[B](z: B)(op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).foldRight(z)(op)
    Definition Classes
    IterableOnceOps
  107. def forall(f: (UndefOr[String]) ⇒ Boolean): Boolean

    Tests whether a predicate holds for all elements of this array.

    Tests whether a predicate holds for all elements of this array.

    returns

    true if this array is empty or the given predicate p holds for all elements of this array, otherwise false.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).forall(f)
    Definition Classes
    ArrayOps
  108. def forall(p: (UndefOr[String]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).forall(p)
    Definition Classes
    IterableOnceOps
  109. def forall(p: (UndefOr[String]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).forall(p)
    Definition Classes
    IterableOnceOps
  110. def forall(p: (UndefOr[String]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).forall(p)
    Definition Classes
    IterableOnceOps
  111. def foreach[U](f: (UndefOr[String]) ⇒ U): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).foreach(f)
    Definition Classes
    IterableOnceOps
  112. def foreach[U](f: (UndefOr[String]) ⇒ U): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).foreach(f)
    Definition Classes
    IterableOnceOps
  113. def foreach[U](f: (UndefOr[String]) ⇒ U): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).foreach(f)
    Definition Classes
    IterableOnceOps
  114. def groupBy[K](f: (UndefOr[String]) ⇒ K): Map[K, WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).groupBy(f)
    Definition Classes
    IterableOps
  115. def groupBy[K](f: (UndefOr[String]) ⇒ K): Map[K, collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).groupBy(f)
    Definition Classes
    IterableOps
  116. def groupBy[K](f: (UndefOr[String]) ⇒ K): Map[K, collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).groupBy(f)
    Definition Classes
    IterableOps
  117. def groupMap[K, B](key: (UndefOr[String]) ⇒ K)(f: (UndefOr[String]) ⇒ B): Map[K, WrappedArray[B]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).groupMap(key)(f)
    Definition Classes
    IterableOps
  118. def groupMap[K, B](key: (UndefOr[String]) ⇒ K)(f: (UndefOr[String]) ⇒ B): Map[K, collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).groupMap(key)(f)
    Definition Classes
    IterableOps
  119. def groupMap[K, B](key: (UndefOr[String]) ⇒ K)(f: (UndefOr[String]) ⇒ B): Map[K, collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).groupMap(key)(f)
    Definition Classes
    IterableOps
  120. def groupMapReduce[K, B](key: (UndefOr[String]) ⇒ K)(f: (UndefOr[String]) ⇒ B)(reduce: (B, B) ⇒ B): Map[K, B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).groupMapReduce(key)(f)(reduce)
    Definition Classes
    IterableOps
  121. def groupMapReduce[K, B](key: (UndefOr[String]) ⇒ K)(f: (UndefOr[String]) ⇒ B)(reduce: (B, B) ⇒ B): Map[K, B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).groupMapReduce(key)(f)(reduce)
    Definition Classes
    IterableOps
  122. def groupMapReduce[K, B](key: (UndefOr[String]) ⇒ K)(f: (UndefOr[String]) ⇒ B)(reduce: (B, B) ⇒ B): Map[K, B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).groupMapReduce(key)(f)(reduce)
    Definition Classes
    IterableOps
  123. def grouped(size: Int): collection.Iterator[Array[UndefOr[String]]]

    Partitions elements in fixed size arrays.

    Partitions elements in fixed size arrays.

    size

    the number of elements per group

    returns

    An iterator producing arrays of size size, except the last will be less than size size if the elements don't divide evenly.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).grouped(size)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
    See also

    scala.collection.Iterator, method grouped

  124. def grouped(size: Int): collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).grouped(size)
    Definition Classes
    IterableOps
  125. def grouped(size: Int): collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).grouped(size)
    Definition Classes
    IterableOps
  126. def grouped(size: Int): collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).grouped(size)
    Definition Classes
    IterableOps
  127. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (execResult: WrappedArray[UndefOr[String]]).hashCode()
    Definition Classes
    Seq → AnyRef → Any
  128. def head: UndefOr[String]

    Selects the first element of this array.

    Selects the first element of this array.

    returns

    the first element of this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).head
    Definition Classes
    ArrayOps
    Exceptions thrown

    NoSuchElementException if the array is empty.

  129. def head: UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).head
    Definition Classes
    IterableOps
  130. def head: UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).head
    Definition Classes
    IterableOps
  131. def head: UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).head
    Definition Classes
    IterableOps
  132. def headOption: Option[UndefOr[String]]

    Optionally selects the first element.

    Optionally selects the first element.

    returns

    the first element of this array if it is nonempty, None if it is empty.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).headOption
    Definition Classes
    ArrayOps
  133. def headOption: Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).headOption
    Definition Classes
    IterableOps
  134. def headOption: Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).headOption
    Definition Classes
    IterableOps
  135. def headOption: Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).headOption
    Definition Classes
    IterableOps
  136. def indexOf(elem: UndefOr[String], from: Int = 0): Int

    Finds the index of the first occurrence of some value in this array after or at some start index.

    Finds the index of the first occurrence of some value in this array after or at some start index.

    elem

    the element value to search for.

    from

    the start index

    returns

    the index >= from of the first element of this array that is equal (as determined by ==) to elem, or -1, if none exists.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).indexOf(elem, from)
    Definition Classes
    ArrayOps
  137. def indexOf[B >: A](elem: B, from: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).indexOf(elem, from)
    Definition Classes
    SeqOps
  138. def indexWhere(f: (UndefOr[String]) ⇒ Boolean, from: Int = 0): Int

    Finds the index of the first element satisfying some predicate after or at some start index.

    Finds the index of the first element satisfying some predicate after or at some start index.

    from

    the start index

    returns

    the index >= from of the first element of this array that satisfies the predicate p, or -1, if none exists.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).indexWhere(f, from)
    Definition Classes
    ArrayOps
  139. def indexWhere(p: (UndefOr[String]) ⇒ Boolean, from: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).indexWhere(p, from)
    Definition Classes
    SeqOps
  140. def indices: Range

    Produces the range of all indices of this sequence.

    Produces the range of all indices of this sequence.

    returns

    a Range value from 0 to one less than the length of this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).indices
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  141. def indices: collection.immutable.Range
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).indices
    Definition Classes
    SeqOps
  142. def init: Array[UndefOr[String]]

    The initial part of the array without its last element.

    The initial part of the array without its last element.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).init
    Definition Classes
    ArrayOps
  143. def init: WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).init
    Definition Classes
    IterableOps
  144. def init: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).init
    Definition Classes
    IterableOps
  145. def init: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).init
    Definition Classes
    IterableOps
  146. def inits: collection.Iterator[Array[UndefOr[String]]]

    Iterates over the inits of this array.

    Iterates over the inits of this array.

    The first value will be this array and the final one will be an empty array, with the intervening values the results of successive applications of init.

    returns

    an iterator over all the inits of this array

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).inits
    Definition Classes
    ArrayOps
  147. def inits: collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).inits
    Definition Classes
    IterableOps
  148. def inits: collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).inits
    Definition Classes
    IterableOps
  149. def inits: collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).inits
    Definition Classes
    IterableOps
  150. def insert(idx: Int, elem: UndefOr[String]): Unit

    Inserts a new element at a given index into this array.

    Inserts a new element at a given index into this array.

    idx

    the index where the new elements is inserted.

    elem

    the element to insert.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).insert(idx, elem)
    Definition Classes
    ArrayOps
    Exceptions thrown

    IndexOutOfBoundsException if the index idx is not in the valid range 0 <= idx <= length.

  151. def insert(idx: Int, elem: UndefOr[String]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).insert(idx, elem)
    Definition Classes
    WrappedArray → Buffer
    Annotations
    @inline()
  152. def insertAll(idx: Int, elems: collection.IterableOnce[UndefOr[String]]): Unit

    Inserts new elements at the index idx.

    Inserts new elements at the index idx.

    As opposed to the method update, this method will not replace an element with a new one. Instead, it will insert a new element at index idx.

    idx

    the index where a new element will be inserted.

    elems

    the iterable object providing all elements to insert.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).insertAll(idx, elems)
    Definition Classes
    ArrayOps
    Exceptions thrown

    IndexOutOfBoundsException if idx is out of bounds.

  153. def insertAll(n: Int, elems: collection.IterableOnce[UndefOr[String]]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).insertAll(n, elems)
    Definition Classes
    WrappedArray → Buffer
    Annotations
    @inline()
  154. def intersect(that: Seq[_ >: UndefOr[String]]): Array[UndefOr[String]]

    Computes the multiset intersection between this array and another sequence.

    Computes the multiset intersection between this array and another sequence.

    that

    the sequence of elements to intersect with.

    returns

    a new array which contains all elements of this array which also appear in that. If an element value x appears n times in that, then the first n occurrences of x will be retained in the result, but any following occurrences will be omitted.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).intersect(that)
    Definition Classes
    ArrayOps
  155. def intersect(that: collection.Seq[_ >: UndefOr[String]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).intersect(that)
    Definition Classes
    SeqOps
  156. def isEmpty: Boolean

    Tests whether the array is empty.

    Tests whether the array is empty.

    returns

    true if the array contains no elements, false otherwise.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).isEmpty
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  157. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).isEmpty
    Definition Classes
    SeqOps → IterableOnceOps
  158. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).isEmpty
    Definition Classes
    IterableOnceOps
  159. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).isEmpty
    Definition Classes
    IterableOnceOps
  160. def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).isTraversableAgain
    Definition Classes
    IterableOps → IterableOnceOps
  161. def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).isTraversableAgain
    Definition Classes
    IterableOps → IterableOnceOps
  162. def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).isTraversableAgain
    Definition Classes
    IterableOps → IterableOnceOps
  163. def iterableFactory: SeqFactory[WrappedArray]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).iterableFactory
    Definition Classes
    WrappedArray → IndexedBuffer → IndexedSeq → Buffer → Seq → Iterable → Seq → Iterable → IterableOps
  164. def iterableFactory: IterableFactory[[X]collection.Iterable[X]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).iterableFactory
    Definition Classes
    Iterable → IterableOps
  165. def iterableFactory: IterableFactory[[X]collection.Iterable[X]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).iterableFactory
    Definition Classes
    Iterable → IterableOps
  166. def iterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).iterator
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  167. def iterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).iterator
    Definition Classes
    IndexedSeqOps → IterableOnce
  168. def iterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).iterator
    Definition Classes
    IterableOps → IterableOnce
    Annotations
    @inline()
  169. def iterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).iterator
    Definition Classes
    IterableOnce
  170. def knownSize: Int

    The size of this array.

    The size of this array.

    returns

    the number of elements in this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).knownSize
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  171. final def knownSize: Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).knownSize
    Definition Classes
    IndexedSeqOps → IterableOnceOps → IterableOnce
  172. def knownSize: Int
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).knownSize
    Definition Classes
    IterableOnceOps
  173. def knownSize: Int
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).knownSize
    Definition Classes
    IterableOnceOps
  174. def last: UndefOr[String]

    Selects the last element of this array.

    Selects the last element of this array.

    returns

    the last element of this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).last
    Definition Classes
    ArrayOps
    Exceptions thrown

    NoSuchElementException if the array is empty.

  175. def last: UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).last
    Definition Classes
    IndexedSeqOps → IterableOps
  176. def last: UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).last
    Definition Classes
    IterableOps
  177. def last: UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).last
    Definition Classes
    IterableOps
  178. def lastIndexOf(elem: UndefOr[String], end: Int = xs.length - 1): Int

    Finds the index of the last occurrence of some value in this array before or at a given end index.

    Finds the index of the last occurrence of some value in this array before or at a given end index.

    elem

    the element value to search for.

    end

    the end index.

    returns

    the index <= end of the last element of this array that is equal (as determined by ==) to elem, or -1, if none exists.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).lastIndexOf(elem, end)
    Definition Classes
    ArrayOps
  179. def lastIndexOf[B >: A](elem: B, end: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).lastIndexOf(elem, end)
    Definition Classes
    SeqOps
  180. def lastIndexWhere(p: (UndefOr[String]) ⇒ Boolean, end: Int = xs.length - 1): Int

    Finds the index of the last element satisfying some predicate before or at given end index.

    Finds the index of the last element satisfying some predicate before or at given end index.

    p

    the predicate used to test elements.

    returns

    the index <= end of the last element of this array that satisfies the predicate p, or -1, if none exists.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).lastIndexWhere(p, end)
    Definition Classes
    ArrayOps
  181. def lastIndexWhere(p: (UndefOr[String]) ⇒ Boolean, end: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).lastIndexWhere(p, end)
    Definition Classes
    SeqOps
  182. def lastOption: Option[UndefOr[String]]

    Optionally selects the last element.

    Optionally selects the last element.

    returns

    the last element of this array$ if it is nonempty, None if it is empty.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).lastOption
    Definition Classes
    ArrayOps
  183. def lastOption: Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).lastOption
    Definition Classes
    IterableOps
  184. def lastOption: Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).lastOption
    Definition Classes
    IterableOps
  185. def lastOption: Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).lastOption
    Definition Classes
    IterableOps
  186. def lazyZip[B]: ([B](that: Iterable[B])scala.collection.LazyZip2[scala.scalajs.js.UndefOr[String],B,_1.type]) forSome {val _1: WrappedArray[UndefOr[String]]}
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).lazyZip
    Definition Classes
    Iterable
  187. def lazyZip[B]: ([B](that: Iterable[B])scala.collection.LazyZip2[scala.scalajs.js.UndefOr[String],B,_1.type]) forSome {val _1: IterableOps[UndefOr[String]]}
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).lazyZip
    Definition Classes
    Iterable
  188. def lazyZip[B]: ([B](that: Iterable[B])scala.collection.LazyZip2[scala.scalajs.js.UndefOr[String],B,_1.type]) forSome {val _1: collection.Iterable[UndefOr[String]]}
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).lazyZip
    Definition Classes
    Iterable
  189. def length: Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (execResult: WrappedArray[UndefOr[String]]).length
    Definition Classes
    WrappedArray → SeqOps
    Annotations
    @inline()
  190. def lengthCompare(len: Int): Int

    Compares the length of this array to a test value.

    Compares the length of this array to a test value.

    len

    the test value that gets compared with the length.

    returns

    A value x where

    x <  0       if this.length <  len
    x == 0       if this.length == len
    x >  0       if this.length >  len
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).lengthCompare(len)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  191. final def lengthCompare(len: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).lengthCompare(len)
    Definition Classes
    IndexedSeqOps → SeqOps
  192. def map[B](f: (UndefOr[String]) ⇒ B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).map(f)
    Definition Classes
    IterableOps → IterableOnceOps
  193. def map[B](f: (UndefOr[String]) ⇒ B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).map(f)
    Definition Classes
    IterableOps → IterableOnceOps
  194. def mapInPlace(f: (UndefOr[String]) ⇒ UndefOr[String]): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).mapInPlace(f)
    Definition Classes
    ArrayOps
  195. def mapInPlace(f: (UndefOr[String]) ⇒ UndefOr[String]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).mapInPlace(f)
    Definition Classes
    IndexedSeqOps
  196. def maxBy[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: math.Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  197. def maxBy[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: math.Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  198. def maxBy[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: math.Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  199. def maxByOption[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: math.Ordering[B]): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).maxByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  200. def maxByOption[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: math.Ordering[B]): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).maxByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  201. def maxByOption[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: math.Ordering[B]): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).maxByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  202. def minBy[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: math.Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).minBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  203. def minBy[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: math.Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).minBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  204. def minBy[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: math.Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).minBy(f)(cmp)
    Definition Classes
    IterableOnceOps
  205. def minByOption[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: math.Ordering[B]): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).minByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  206. def minByOption[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: math.Ordering[B]): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).minByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  207. def minByOption[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: math.Ordering[B]): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).minByOption(f)(cmp)
    Definition Classes
    IterableOnceOps
  208. final def mkString: String
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).mkString
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  209. final def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).mkString(sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  210. final def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).mkString(start, sep, end)
    Definition Classes
    IterableOnceOps
  211. final def mkString: String
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).mkString
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  212. final def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).mkString(sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  213. final def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).mkString(start, sep, end)
    Definition Classes
    IterableOnceOps
  214. final def mkString: String
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).mkString
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  215. final def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).mkString(sep)
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  216. final def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).mkString(start, sep, end)
    Definition Classes
    IterableOnceOps
  217. def nonEmpty: Boolean

    Tests whether the array is not empty.

    Tests whether the array is not empty.

    returns

    true if the array contains at least one element, false otherwise.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).nonEmpty
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  218. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).nonEmpty
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  219. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).nonEmpty
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  220. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).nonEmpty
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  221. def padToInPlace(len: Int, elem: UndefOr[String]): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).padToInPlace(len, elem)
    Definition Classes
    ArrayOps
  222. def padToInPlace(len: Int, elem: UndefOr[String]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).padToInPlace(len, elem)
    Definition Classes
    Buffer
  223. def partition(p: (UndefOr[String]) ⇒ Boolean): (Array[UndefOr[String]], Array[UndefOr[String]])

    A pair of, first, all elements that satisfy predicate p and, second, all elements that do not.

    A pair of, first, all elements that satisfy predicate p and, second, all elements that do not.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).partition(p)
    Definition Classes
    ArrayOps
  224. def partition(p: (UndefOr[String]) ⇒ Boolean): (WrappedArray[UndefOr[String]], WrappedArray[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).partition(p)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps
  225. def partition(p: (UndefOr[String]) ⇒ Boolean): (collection.Iterable[UndefOr[String]], collection.Iterable[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).partition(p)
    Definition Classes
    IterableOps
  226. def partition(p: (UndefOr[String]) ⇒ Boolean): (collection.Iterable[UndefOr[String]], collection.Iterable[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).partition(p)
    Definition Classes
    IterableOps
  227. def partitionWith[A1, A2](f: (UndefOr[String]) ⇒ Either[A1, A2]): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).partitionWith(f)
    Definition Classes
    IterableOps
  228. def partitionWith[A1, A2](f: (UndefOr[String]) ⇒ Either[A1, A2]): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).partitionWith(f)
    Definition Classes
    IterableOps
  229. def patchInPlace(from: Int, patch: collection.Seq[UndefOr[String]], replaced: Int): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).patchInPlace(from, patch, replaced)
    Definition Classes
    ArrayOps
    Annotations
    @noinline()
  230. def patchInPlace(from: Int, patch: collection.Seq[UndefOr[String]], replaced: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).patchInPlace(from, patch, replaced)
    Definition Classes
    IndexedBuffer → Buffer
  231. def permutations: collection.Iterator[Array[UndefOr[String]]]

    Iterates over distinct permutations.

    Iterates over distinct permutations.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).permutations
    Definition Classes
    ArrayOps
  232. def permutations: collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).permutations
    Definition Classes
    SeqOps
  233. def prepend(elem: UndefOr[String]): Array[UndefOr[String]]

    Prepends a single element at the front of this array.

    Prepends a single element at the front of this array.

    elem

    the element to add.

    returns

    the array itself

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).prepend(elem)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  234. def prepend(elem: UndefOr[String]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).prepend(elem)
    Definition Classes
    WrappedArray → Buffer
    Annotations
    @inline()
  235. def prependAll(elems: collection.IterableOnce[UndefOr[String]]): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).prependAll(elems)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  236. def prependAll(xs: collection.IterableOnce[UndefOr[String]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).prependAll(xs)
    Definition Classes
    WrappedArray → Buffer
    Annotations
    @inline()
  237. def remove(idx: Int, count: Int): Unit

    Removes consecutive elements starting at a given index position.

    Removes consecutive elements starting at a given index position.

    idx

    the index which refers to the first element to remove.

    count

    the number of elements to remove.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).remove(idx, count)
    Definition Classes
    ArrayOps
    Exceptions thrown

    IllegalArgumentException if count < 0.

    IndexOutOfBoundsException if the index idx is not in the valid range 0 <= idx <= length - count (with count > 0).

  238. def remove(idx: Int): UndefOr[String]

    Removes the element at a given index position.

    Removes the element at a given index position.

    idx

    the index which refers to the element to delete.

    returns

    the element that was formerly at index idx.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).remove(idx)
    Definition Classes
    ArrayOps
    Exceptions thrown

    IndexOutOfBoundsException if idx is out of bounds.

  239. def remove(n: Int, count: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).remove(n, count)
    Definition Classes
    WrappedArray → Buffer
  240. def remove(n: Int): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).remove(n)
    Definition Classes
    WrappedArray → Buffer
  241. def reverse: Array[UndefOr[String]]

    Returns a new array with the elements in reversed order.

    Returns a new array with the elements in reversed order.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).reverse
    Definition Classes
    ArrayOps
  242. def reverse: WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).reverse
    Definition Classes
    IndexedSeqOps → SeqOps
  243. def reverseIterator: collection.Iterator[UndefOr[String]]

    An iterator yielding elements in reversed order.

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but implemented more efficiently.

    returns

    an iterator yielding the elements of this array in reversed order

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).reverseIterator
    Definition Classes
    ArrayOps
  244. def reverseIterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).reverseIterator
    Definition Classes
    IndexedSeqOps → SeqOps
  245. def scanLeft[B](z: B)(op: (B, UndefOr[String]) ⇒ B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).scanLeft(z)(op)
    Definition Classes
    IterableOps → IterableOnceOps
  246. def scanLeft[B](z: B)(op: (B, UndefOr[String]) ⇒ B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).scanLeft(z)(op)
    Definition Classes
    IterableOps → IterableOnceOps
  247. def scanRight[B](z: B)(op: (UndefOr[String], B) ⇒ B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).scanRight(z)(op)
    Definition Classes
    IterableOps
  248. def scanRight[B](z: B)(op: (UndefOr[String], B) ⇒ B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).scanRight(z)(op)
    Definition Classes
    IterableOps
  249. def scanRight[B](z: B)(op: (UndefOr[String], B) ⇒ B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).scanRight(z)(op)
    Definition Classes
    IterableOps
  250. def size: Int

    The size of this array.

    The size of this array.

    returns

    the number of elements in this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).size
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  251. final def size: Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).size
    Definition Classes
    SeqOps → IterableOnceOps
  252. def size: Int
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).size
    Definition Classes
    IterableOnceOps
  253. def size: Int
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).size
    Definition Classes
    IterableOnceOps
  254. final def sizeCompare(that: collection.Iterable[_]): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).sizeCompare(that)
    Definition Classes
    IndexedSeqOps → IterableOps
  255. final def sizeCompare(_size: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).sizeCompare(_size)
    Definition Classes
    SeqOps → IterableOps
  256. def sizeCompare(that: collection.Iterable[_]): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).sizeCompare(that)
    Definition Classes
    IterableOps
  257. def sizeCompare(otherSize: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).sizeCompare(otherSize)
    Definition Classes
    IterableOps
  258. def sizeCompare(that: collection.Iterable[_]): Int
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).sizeCompare(that)
    Definition Classes
    IterableOps
  259. def sizeCompare(otherSize: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).sizeCompare(otherSize)
    Definition Classes
    IterableOps
  260. final def sizeIs: SizeCompareOps
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).sizeIs
    Definition Classes
    IterableOps
    Annotations
    @inline()
  261. final def sizeIs: SizeCompareOps
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).sizeIs
    Definition Classes
    IterableOps
    Annotations
    @inline()
  262. final def sizeIs: SizeCompareOps
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).sizeIs
    Definition Classes
    IterableOps
    Annotations
    @inline()
  263. def slice(from: Int, until: Int): Array[UndefOr[String]]

    Selects an interval of elements.

    Selects an interval of elements.

    The returned array is made up of all elements x which satisfy the invariant:

    from <= indexOf(x) < until
    from

    the lowest index to include from this array.

    until

    the lowest index to EXCLUDE from this array.

    returns

    an array containing the elements greater than or equal to index from extending up to (but not including) index until of this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).slice(from, until)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  264. def slice(from: Int, until: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).slice(from, until)
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  265. def slice(from: Int, until: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).slice(from, until)
    Definition Classes
    IterableOps → IterableOnceOps
  266. def slice(from: Int, until: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).slice(from, until)
    Definition Classes
    IterableOps → IterableOnceOps
  267. def sliceInPlace(start: Int, end: Int): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).sliceInPlace(start, end)
    Definition Classes
    ArrayOps
  268. def sliceInPlace(start: Int, end: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).sliceInPlace(start, end)
    Definition Classes
    Buffer
  269. def sliding(size: Int, step: Int = 1): collection.Iterator[Array[UndefOr[String]]]

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped).

    Groups elements in fixed size blocks by passing a "sliding window" over them (as opposed to partitioning them, as is done in grouped).

    size

    the number of elements per group

    step

    the distance between the first elements of successive groups

    returns

    An iterator producing arrays of size size, except the last element (which may be the only element) will be truncated if there are fewer than size elements remaining to be grouped.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).sliding(size, step)
    Definition Classes
    ArrayOps
    See also

    scala.collection.Iterator, method sliding

  270. def sliding(size: Int, step: Int): collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).sliding(size, step)
    Definition Classes
    IterableOps
  271. def sliding(size: Int): collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).sliding(size)
    Definition Classes
    IterableOps
  272. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).sliding(size, step)
    Definition Classes
    IterableOps
  273. def sliding(size: Int): collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).sliding(size)
    Definition Classes
    IterableOps
  274. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).sliding(size, step)
    Definition Classes
    IterableOps
  275. def sliding(size: Int): collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).sliding(size)
    Definition Classes
    IterableOps
  276. def sortWith(lt: (UndefOr[String], UndefOr[String]) ⇒ Boolean): Array[UndefOr[String]]

    Sorts this array according to a comparison function.

    Sorts this array according to a comparison function.

    The sort is stable. That is, elements that are equal (as determined by lt) appear in the same order in the sorted sequence as in the original.

    lt

    the comparison function which tests whether its first argument precedes its second argument in the desired ordering.

    returns

    an array consisting of the elements of this array sorted according to the comparison function lt.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).sortWith(lt)
    Definition Classes
    ArrayOps
  277. def sortWith(lt: (UndefOr[String], UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).sortWith(lt)
    Definition Classes
    SeqOps
  278. def span(p: (UndefOr[String]) ⇒ Boolean): (Array[UndefOr[String]], Array[UndefOr[String]])

    Splits this array into a prefix/suffix pair according to a predicate.

    Splits this array into a prefix/suffix pair according to a predicate.

    Note: c.span(p) is equivalent to (but more efficient than) (c.takeWhile(p), c.dropWhile(p)), provided the evaluation of the predicate p does not cause any side-effects.

    p

    the test predicate

    returns

    a pair consisting of the longest prefix of this array whose chars all satisfy p, and the rest of this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).span(p)
    Definition Classes
    ArrayOps
  279. def span(p: (UndefOr[String]) ⇒ Boolean): (WrappedArray[UndefOr[String]], WrappedArray[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).span(p)
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  280. def span(p: (UndefOr[String]) ⇒ Boolean): (collection.Iterable[UndefOr[String]], collection.Iterable[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).span(p)
    Definition Classes
    IterableOps → IterableOnceOps
  281. def span(p: (UndefOr[String]) ⇒ Boolean): (collection.Iterable[UndefOr[String]], collection.Iterable[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).span(p)
    Definition Classes
    IterableOps → IterableOnceOps
  282. def splitAt(n: Int): (Array[UndefOr[String]], Array[UndefOr[String]])

    Splits this array into two at a given position.

    Splits this array into two at a given position.

    Note: c.splitAt(n) is equivalent to (c.take(n), c.drop(n)).

    n

    the position at which to split.

    returns

    a pair of arrays consisting of the first n elements of this array, and the other elements.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).splitAt(n)
    Definition Classes
    ArrayOps
  283. def splitAt(n: Int): (WrappedArray[UndefOr[String]], WrappedArray[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).splitAt(n)
    Definition Classes
    IterableOps
  284. def splitAt(n: Int): (collection.Iterable[UndefOr[String]], collection.Iterable[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).splitAt(n)
    Definition Classes
    IterableOps
  285. def splitAt(n: Int): (collection.Iterable[UndefOr[String]], collection.Iterable[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).splitAt(n)
    Definition Classes
    IterableOps
  286. def subtractAll(ys: collection.IterableOnce[UndefOr[String]]): Array[UndefOr[String]]

    Removes all elements produced by an iterator from this array.

    Removes all elements produced by an iterator from this array.

    returns

    the array itself

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).subtractAll(ys)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  287. def subtractAll(xs: collection.IterableOnce[UndefOr[String]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).subtractAll(xs)
    Definition Classes
    Shrinkable
  288. def subtractOne(elem: UndefOr[String]): Array[UndefOr[String]]

    Removes a single element from this array.

    Removes a single element from this array.

    elem

    the element to remove.

    returns

    the array itself

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).subtractOne(elem)
    Definition Classes
    ArrayOps
  289. def subtractOne(x: UndefOr[String]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).subtractOne(x)
    Definition Classes
    Buffer → Shrinkable
  290. def tail: Array[UndefOr[String]]

    The rest of the array without its first element.

    The rest of the array without its first element.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).tail
    Definition Classes
    ArrayOps
  291. def tail: WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).tail
    Definition Classes
    IterableOps
  292. def tail: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).tail
    Definition Classes
    IterableOps
  293. def tail: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).tail
    Definition Classes
    IterableOps
  294. def tails: collection.Iterator[Array[UndefOr[String]]]

    Iterates over the tails of this array.

    Iterates over the tails of this array.

    The first value will be this array and the final one will be an empty array, with the intervening values the results of successive applications of tail.

    returns

    an iterator over all the tails of this array

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).tails
    Definition Classes
    ArrayOps
  295. def tails: collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).tails
    Definition Classes
    IterableOps
  296. def tails: collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).tails
    Definition Classes
    IterableOps
  297. def tails: collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).tails
    Definition Classes
    IterableOps
  298. def take(n: Int): Array[UndefOr[String]]

    An array containing the first n elements of this array.

    An array containing the first n elements of this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).take(n)
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  299. def take(n: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).take(n)
    Definition Classes
    IndexedSeqOps → IterableOps → IterableOnceOps
  300. def take(n: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).take(n)
    Definition Classes
    IterableOps → IterableOnceOps
  301. def take(n: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).take(n)
    Definition Classes
    IterableOps → IterableOnceOps
  302. def takeInPlace(n: Int): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).takeInPlace(n)
    Definition Classes
    ArrayOps
  303. def takeInPlace(n: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).takeInPlace(n)
    Definition Classes
    Buffer
  304. def takeRight(n: Int): Array[UndefOr[String]]

    An array containing the last n elements of this array.

    An array containing the last n elements of this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).takeRight(n)
    Definition Classes
    ArrayOps
  305. def takeRight(n: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).takeRight(n)
    Definition Classes
    IndexedSeqOps → IterableOps
  306. def takeRight(n: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).takeRight(n)
    Definition Classes
    IterableOps
  307. def takeRight(n: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).takeRight(n)
    Definition Classes
    IterableOps
  308. def takeRightInPlace(n: Int): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).takeRightInPlace(n)
    Definition Classes
    ArrayOps
  309. def takeRightInPlace(n: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).takeRightInPlace(n)
    Definition Classes
    Buffer
  310. def takeWhile(p: (UndefOr[String]) ⇒ Boolean): Array[UndefOr[String]]

    Takes the longest prefix of elements that satisfy a predicate.

    Takes the longest prefix of elements that satisfy a predicate.

    p

    The predicate used to test elements.

    returns

    the longest prefix of this array whose elements all satisfy the predicate p.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).takeWhile(p)
    Definition Classes
    ArrayOps
  311. def takeWhile(p: (UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).takeWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  312. def takeWhile(p: (UndefOr[String]) ⇒ Boolean): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).takeWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  313. def takeWhile(p: (UndefOr[String]) ⇒ Boolean): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).takeWhile(p)
    Definition Classes
    IterableOps → IterableOnceOps
  314. def takeWhileInPlace(p: (UndefOr[String]) ⇒ Boolean): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).takeWhileInPlace(p)
    Definition Classes
    ArrayOps
  315. def takeWhileInPlace(p: (UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).takeWhileInPlace(p)
    Definition Classes
    Buffer
  316. def to[C1](factory: Factory[UndefOr[String], C1]): C1
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).to(factory)
    Definition Classes
    IterableOnceOps
  317. def to[C1](factory: Factory[UndefOr[String], C1]): C1
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).to(factory)
    Definition Classes
    IterableOnceOps
  318. def to[C1](factory: Factory[UndefOr[String], C1]): C1
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).to(factory)
    Definition Classes
    IterableOnceOps
  319. final def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).toBuffer
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  320. final def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).toBuffer
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  321. final def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).toBuffer
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  322. def toIndexedSeq: collection.immutable.IndexedSeq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).toIndexedSeq
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  323. def toIndexedSeq: collection.immutable.IndexedSeq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).toIndexedSeq
    Definition Classes
    IterableOnceOps
  324. def toIndexedSeq: collection.immutable.IndexedSeq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).toIndexedSeq
    Definition Classes
    IterableOnceOps
  325. def toIndexedSeq: collection.immutable.IndexedSeq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).toIndexedSeq
    Definition Classes
    IterableOnceOps
  326. final def toIterable: WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).toIterable
    Definition Classes
    Iterable → IterableOps
  327. final def toIterable: IterableOps[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).toIterable
    Definition Classes
    Iterable → IterableOps
  328. final def toIterable: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).toIterable
    Definition Classes
    Iterable → IterableOps
  329. def toList: collection.immutable.List[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).toList
    Definition Classes
    IterableOnceOps
  330. def toList: collection.immutable.List[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).toList
    Definition Classes
    IterableOnceOps
  331. def toList: collection.immutable.List[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).toList
    Definition Classes
    IterableOnceOps
  332. def toMap[K, V](implicit ev: <:<[UndefOr[String], (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).toMap(ev)
    Definition Classes
    IterableOnceOps
  333. def toMap[K, V](implicit ev: <:<[UndefOr[String], (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).toMap(ev)
    Definition Classes
    IterableOnceOps
  334. def toMap[K, V](implicit ev: <:<[UndefOr[String], (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).toMap(ev)
    Definition Classes
    IterableOnceOps
  335. final def toSeq: collection.immutable.Seq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).toSeq
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  336. def toSeq: collection.immutable.Seq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).toSeq
    Definition Classes
    IterableOnceOps
  337. def toSeq: collection.immutable.Seq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).toSeq
    Definition Classes
    IterableOnceOps
  338. def toSeq: collection.immutable.Seq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).toSeq
    Definition Classes
    IterableOnceOps
  339. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).toSet
    Definition Classes
    IterableOnceOps
  340. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).toSet
    Definition Classes
    IterableOnceOps
  341. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).toSet
    Definition Classes
    IterableOnceOps
  342. def toString(): String
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (execResult: WrappedArray[UndefOr[String]]).toString()
    Definition Classes
    Seq → Function1 → Iterable → AnyRef → Any
  343. def toString(): String
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    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:
    (execResult: IterableOps[UndefOr[String]]).toString()
    Definition Classes
    Iterable → AnyRef → Any
  344. def toString(): String
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    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:
    (execResult: collection.Iterable[UndefOr[String]]).toString()
    Definition Classes
    Iterable → AnyRef → Any
  345. def toVector: collection.immutable.Vector[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).toVector
    Definition Classes
    IterableOnceOps
  346. def toVector: collection.immutable.Vector[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).toVector
    Definition Classes
    IterableOnceOps
  347. def toVector: collection.immutable.Vector[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).toVector
    Definition Classes
    IterableOnceOps
  348. def transpose[B](implicit asIterable: (UndefOr[String]) ⇒ collection.Iterable[B]): WrappedArray[WrappedArray[B]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).transpose(asIterable)
    Definition Classes
    IterableOps
  349. def transpose[B](implicit asIterable: (UndefOr[String]) ⇒ collection.Iterable[B]): collection.Iterable[collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).transpose(asIterable)
    Definition Classes
    IterableOps
  350. def transpose[B](implicit asIterable: (UndefOr[String]) ⇒ collection.Iterable[B]): collection.Iterable[collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).transpose(asIterable)
    Definition Classes
    IterableOps
  351. def trimEnd(n: Int): Unit

    Removes the last n elements of this array.

    Removes the last n elements of this array.

    n

    the number of elements to remove from the end of this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).trimEnd(n)
    Definition Classes
    ArrayOps
  352. def trimEnd(n: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).trimEnd(n)
    Definition Classes
    Buffer
  353. def trimStart(n: Int): Unit

    Removes the first n elements of this array.

    Removes the first n elements of this array.

    n

    the number of elements to remove from the beginning of this array.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).trimStart(n)
    Definition Classes
    ArrayOps
  354. def trimStart(n: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).trimStart(n)
    Definition Classes
    Buffer
  355. def unzip[A1, A2](implicit asPair: (UndefOr[String]) ⇒ (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).unzip(asPair)
    Definition Classes
    IterableOps
  356. def unzip[A1, A2](implicit asPair: (UndefOr[String]) ⇒ (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).unzip(asPair)
    Definition Classes
    IterableOps
  357. def unzip3[A1, A2, A3](implicit asTriple: (UndefOr[String]) ⇒ (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).unzip3(asTriple)
    Definition Classes
    IterableOps
  358. def unzip3[A1, A2, A3](implicit asTriple: (UndefOr[String]) ⇒ (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).unzip3(asTriple)
    Definition Classes
    IterableOps
  359. def update(index: Int, elem: UndefOr[String]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    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:
    (execResult: WrappedArray[UndefOr[String]]).update(index, elem)
    Definition Classes
    WrappedArray → SeqOps
    Annotations
    @inline()
  360. def view: IndexedSeqView[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).view
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  361. def view: IndexedSeqView[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).view
    Definition Classes
    IndexedSeqOps → SeqOps → IterableOps
  362. def view: View[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).view
    Definition Classes
    IterableOps
  363. def view: View[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).view
    Definition Classes
    IterableOps
  364. def withFilter(p: (UndefOr[String]) ⇒ Boolean): WithFilter[UndefOr[String]]

    Creates a non-strict filter of this array.

    Creates a non-strict filter of this array.

    Note: the difference between c.filter(p) and c.withFilter(p) is that the former creates a new array, whereas the latter only restricts the domain of subsequent map, flatMap, foreach, and withFilter operations.

    p

    the predicate used to test elements.

    returns

    an object of class js.ArrayOps.WithFilter, which supports map, flatMap, foreach, and withFilter operations. All these operations apply to those elements of this array which satisfy the predicate p.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).withFilter(p)
    Definition Classes
    ArrayOps
  365. def withFilter(p: (UndefOr[String]) ⇒ Boolean): WithFilter[UndefOr[String], [_]WrappedArray[_]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).withFilter(p)
    Definition Classes
    IterableOps
  366. def withFilter(p: (UndefOr[String]) ⇒ Boolean): WithFilter[UndefOr[String], collection.Iterable]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).withFilter(p)
    Definition Classes
    IterableOps
  367. def withFilter(p: (UndefOr[String]) ⇒ Boolean): WithFilter[UndefOr[String], collection.Iterable]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).withFilter(p)
    Definition Classes
    IterableOps
  368. def zip[B](that: collection.IterableOnce[B]): collection.Iterable[(UndefOr[String], B)]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).zip(that)
    Definition Classes
    IterableOps
  369. def zip[B](that: collection.IterableOnce[B]): collection.Iterable[(UndefOr[String], B)]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).zip(that)
    Definition Classes
    IterableOps
  370. def zipWithIndex: Array[(UndefOr[String], Int)]

    Zips this array with its indices.

    Zips this array with its indices.

    returns

    A new array containing pairs consisting of all elements of this array paired with their index. Indices start at 0.

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).zipWithIndex
    Definition Classes
    ArrayOps
  371. def zipWithIndex: WrappedArray[(UndefOr[String], Int)]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).zipWithIndex
    Definition Classes
    StrictOptimizedIterableOps → IterableOps → IterableOnceOps
  372. def zipWithIndex: collection.Iterable[(UndefOr[String], Int)]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).zipWithIndex
    Definition Classes
    IterableOps → IterableOnceOps
  373. def zipWithIndex: collection.Iterable[(UndefOr[String], Int)]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).zipWithIndex
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def ++:[B >: A](that: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use xs ++ ys instead of ys ++: xs for xs of type Iterable

  2. def ++:[B >: A](that: collection.IterableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use xs ++ ys instead of ys ++: xs for xs of type Iterable

  3. final def +=(elem1: UndefOr[String], elem2: UndefOr[String], elems: UndefOr[String]*): Array[UndefOr[String]]

    Adds two or more elements to this array.

    Adds two or more elements to this array.

    elem1

    the first element to add.

    elem2

    the second element to add.

    elems

    the remaining elements to add.

    returns

    the array itself

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).+=(elem1, elem2, elems)
    Definition Classes
    ArrayOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ++= (addAll) instead of varargs +=

  4. final def +=(elem1: UndefOr[String], elem2: UndefOr[String], elems: UndefOr[String]*): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).+=(elem1, elem2, elems)
    Definition Classes
    Growable
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ++= (addAll) instead of varargs +=

  5. def -=(elem1: UndefOr[String], elem2: UndefOr[String], elems: UndefOr[String]*): Array[UndefOr[String]]

    Removes two or more elements from this array.

    Removes two or more elements from this array.

    elem1

    the first element to remove.

    elem2

    the second element to remove.

    elems

    the remaining elements to remove.

    returns

    the array itself

    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).-=(elem1, elem2, elems)
    Definition Classes
    ArrayOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use --= (subtractAll) instead of varargs -=

  6. final def /:[B](z: B)(op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]])./:(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  7. final def /:[B](z: B)(op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]])./:(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  8. final def /:[B](z: B)(op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]])./:(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  9. final def :\[B](z: B)(op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).:\(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  10. final def :\[B](z: B)(op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).:\(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  11. final def :\[B](z: B)(op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).:\(z)(op)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  12. def aggregate[B](z: ⇒ B)(seqop: (B, UndefOr[String]) ⇒ B, combop: (B, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).aggregate(z)(seqop, combop)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  13. def aggregate[B](z: ⇒ B)(seqop: (B, UndefOr[String]) ⇒ B, combop: (B, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).aggregate(z)(seqop, combop)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  14. def aggregate[B](z: ⇒ B)(seqop: (B, UndefOr[String]) ⇒ B, combop: (B, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).aggregate(z)(seqop, combop)
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  15. final def append(elems: UndefOr[String]*): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).append(elems)
    Definition Classes
    ArrayOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use appendAll instead

  16. final def append(elems: UndefOr[String]*): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).append(elems)
    Definition Classes
    Buffer
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use appendAll instead

  17. def companion: IterableFactory[[X]WrappedArray[X]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).companion
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  18. def companion: IterableFactory[[X]collection.Iterable[X]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).companion
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  19. def companion: IterableFactory[[X]collection.Iterable[X]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).companion
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  20. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  21. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  22. final def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  23. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use foldLeft instead

  24. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use foldLeft instead

  25. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use foldLeft instead

  26. final def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).hasDefiniteSize
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .knownSize >=0 instead of .hasDefiniteSize

  27. final def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).hasDefiniteSize
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .knownSize >=0 instead of .hasDefiniteSize

  28. final def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).hasDefiniteSize
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .knownSize >=0 instead of .hasDefiniteSize

  29. final def prefixLength(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use segmentLength instead of prefixLength

  30. final def prepend(elems: UndefOr[String]*): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: ArrayOps[UndefOr[String]]).prepend(elems)
    Definition Classes
    ArrayOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use prependAll instead

  31. final def prepend(elems: UndefOr[String]*): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).prepend(elems)
    Definition Classes
    Buffer
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use prependAll instead

  32. final def repr: WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).repr
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  33. final def repr: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).repr
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  34. final def repr: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).repr
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  35. def reverseMap[B](f: (UndefOr[String]) ⇒ B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .reverseIterator.map(f).to(...) instead of .reverseMap(f)

  36. def scan[B >: A](z: B)(op: (B, B) ⇒ B): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use scanLeft instead

  37. def scan[B >: A](z: B)(op: (B, B) ⇒ B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use scanLeft instead

  38. def scan[B >: A](z: B)(op: (B, B) ⇒ B): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use scanLeft instead

  39. def seq: WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).seq
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  40. def seq: IterableOps[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).seq
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  41. def seq: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).seq
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  42. final def toIterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).toIterator
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  43. final def toIterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).toIterator
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  44. final def toIterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).toIterator
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead of .toIterator

  45. final def toStream: collection.immutable.Stream[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).toStream
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  46. final def toStream: collection.immutable.Stream[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).toStream
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  47. final def toStream: collection.immutable.Stream[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).toStream
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  48. final def toTraversable: collection.Traversable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).toTraversable
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  49. final def toTraversable: collection.Traversable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).toTraversable
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  50. final def toTraversable: collection.Traversable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).toTraversable
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  51. final def transform(f: (UndefOr[String]) ⇒ UndefOr[String]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use mapInPlace on an IndexedSeq instead

  52. final def union[B >: A, That](that: collection.Seq[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use concat instead

  53. final def view(from: Int, until: Int): View[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toWrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: WrappedArray[UndefOr[String]]).view(from, until)
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  54. final def view(from: Int, until: Int): View[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult toIterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: IterableOps[UndefOr[String]]).view(from, until)
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  55. final def view(from: Int, until: Int): View[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult tocollection.Iterable[UndefOr[String]] performed by method arrayAsIterable in scala.scalajs.js.LowestPrioAnyImplicits.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (execResult: collection.Iterable[UndefOr[String]]).view(from, until)
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

Inherited from Array[UndefOr[String]]

Inherited from Iterable[UndefOr[String]]

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from scala.Any

Inherited by implicit conversion jsArrayOps fromExecResult to ArrayOps[UndefOr[String]]

Inherited by implicit conversion wrapArray fromExecResult to WrappedArray[UndefOr[String]]

Inherited by implicit conversion iterableOps fromExecResult to IterableOps[UndefOr[String]]

Inherited by implicit conversion arrayAsIterable fromExecResult to collection.Iterable[UndefOr[String]]

Inherited by implicit conversion any2undefOrA fromExecResult to UndefOr[ExecResult]

Inherited by implicit conversion any2undefOrUnion fromExecResult to UndefOr[|[B1, B2]]

Inherited by implicit conversion any2stringadd fromExecResult to any2stringadd[ExecResult]

Inherited by implicit conversion StringFormat fromExecResult to StringFormat[ExecResult]

Inherited by implicit conversion Ensuring fromExecResult to Ensuring[ExecResult]

Inherited by implicit conversion ArrowAssoc fromExecResult to ArrowAssoc[ExecResult]

Ungrouped