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
t

scala.scalajs.js.RegExp

ExecResult

trait ExecResult extends Array[UndefOr[String]]

Annotations
@JSType()
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 from
  2. by jsArrayOps
  3. by fromTypeConstructor
  4. by wrapArray
  5. by iterableOps
  6. by any2stringadd
  7. by StringFormat
  8. by Ensuring
  9. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val groups: UndefOr[Dictionary[UndefOr[String]]]

    ECMAScript 2018

  2. abstract val index: Int
  3. abstract val input: String

Concrete Value Members

  1. final def !=(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult to any2stringadd[ExecResult] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ++[B >: A](that: Array[_ <: B]): Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps
    Annotations
    @inline()
  5. def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableLike → GenTraversableLike
  6. def ++(xs: GenTraversableOnce[UndefOr[String]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    BufferLike
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) ++ creates a new buffer. Use ++= to add an element from this buffer and return that buffer itself.

  7. def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  8. def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  9. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableLike
  10. def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableLike
  11. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike
  12. def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike
  13. def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[collection.Iterable[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike
  14. def ++:[B >: A, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike
  15. def ++=:(xs: collection.TraversableOnce[|[String, Unit]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedArray → BufferLike
    Annotations
    @inline()
  16. def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike → GenSeqLike
  17. def +:[B >: A, That](elem: B)(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike → GenSeqLike
  18. def +=:(elem: |[String, Unit]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedArray → BufferLike
    Annotations
    @inline()
  19. def -(elem1: UndefOr[String], elem2: UndefOr[String], elems: UndefOr[String]*): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    BufferLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new buffer. Use -= to remove an element from this buffer and return that buffer itself.

  20. def -(elem: UndefOr[String]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    BufferLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) - creates a new buffer. Use -= to remove an element from this buffer and return that buffer itself.

  21. def --(xs: GenTraversableOnce[UndefOr[String]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    BufferLike → Subtractable
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) -- creates a new buffer. Use --= to remove an element from this buffer and return that buffer itself.

  22. def --=(xs: collection.TraversableOnce[|[String, Unit]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
  23. def -=(x: |[String, Unit]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    BufferLike → Shrinkable
  24. def -=(elem1: |[String, Unit], elem2: |[String, Unit], elems: |[String, Unit]*): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Shrinkable
  25. def ->[B](y: B): (ExecResult, B)
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrowAssoc[ExecResult] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  26. def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike → GenSeqLike
  27. def :+[B >: A, That](elem: B)(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike → GenSeqLike
  28. final def ==(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  29. def andThen[C](k: (UndefOr[String]) ⇒ C): PartialFunction[Int, C]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction → Function1
  30. def append(elems: UndefOr[String]*): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    BufferLike
  31. def appendAll(xs: collection.TraversableOnce[UndefOr[String]]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    BufferLike
  32. 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()
  33. def applyOrElse[A1 <: A, B1 >: B](x: A1, default: (A1) ⇒ B1): B1
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  34. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  35. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  36. def collect[B, That](pf: PartialFunction[UndefOr[String], B])(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableLike → GenTraversableLike
  37. def compose[A](g: (A) ⇒ Int): (A) ⇒ UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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 contains[A1 >: A](elem: A1): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike
  40. def contains[A1 >: A](elem: A1): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike
  41. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  42. def copyToArray[B >: A](xs: scala.Array[B]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  43. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  44. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  45. def copyToArray[B >: A](xs: scala.Array[B]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  46. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  47. def copyToArray[B >: A](xs: scala.Array[B], start: Int, len: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  48. def copyToArray[B >: A](xs: scala.Array[B]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  49. def copyToArray[B >: A](xs: scala.Array[B], start: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  50. def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableOnce
  51. def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  52. def copyToBuffer[B >: A](dest: Buffer[B]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  53. def diff[B >: A](that: GenSeq[B]): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike → GenSeqLike
  54. def diff[B >: A](that: GenSeq[B]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike → GenSeqLike
  55. def ensuring(cond: (ExecResult) ⇒ Boolean, msg: ⇒ scala.Any): ExecResult
    Implicit
    This member is added by an implicit conversion from ExecResult to Ensuring[ExecResult] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  56. def ensuring(cond: (ExecResult) ⇒ Boolean): ExecResult
    Implicit
    This member is added by an implicit conversion from ExecResult to Ensuring[ExecResult] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  57. def ensuring(cond: Boolean, msg: ⇒ scala.Any): ExecResult
    Implicit
    This member is added by an implicit conversion from ExecResult to Ensuring[ExecResult] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  58. def ensuring(cond: Boolean): ExecResult
    Implicit
    This member is added by an implicit conversion from ExecResult to Ensuring[ExecResult] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  59. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  60. def equals(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  61. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  62. def flatMap[B, That](f: (UndefOr[String]) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  63. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  64. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  65. def fold[A1 >: A](z: A1)(op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  66. def foldLeft[B](z: B)(op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  67. def foldRight[B](z: B)(op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  68. def foreach[U](f: (UndefOr[String]) ⇒ U): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  69. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  70. 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
  71. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  72. def indexOf[B >: A](elem: B, from: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    GenSeqLike
  73. def indexOf[B >: A](elem: B): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    GenSeqLike
  74. def indexOf[B >: A](elem: B, from: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenSeqLike
  75. def indexOf[B >: A](elem: B): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenSeqLike
  76. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike
  77. def indexOfSlice[B >: A](that: GenSeq[B]): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike
  78. def indexOfSlice[B >: A](that: GenSeq[B], from: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike
  79. def indexOfSlice[B >: A](that: GenSeq[B]): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike
  80. def insert(n: Int, elems: UndefOr[String]*): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    BufferLike
  81. def insertAll(n: Int, elems: collection.Traversable[UndefOr[String]]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedArray → BufferLike
  82. def intersect[B >: A](that: GenSeq[B]): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike → GenSeqLike
  83. def intersect[B >: A](that: GenSeq[B]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike → GenSeqLike
  84. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  85. 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
  86. 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
  87. 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 = js.Symbol.iterator )
  88. 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( name = "slice" )
  89. def lastIndexOf[B >: A](elem: B, end: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    GenSeqLike
  90. def lastIndexOf[B >: A](elem: B): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    GenSeqLike
  91. def lastIndexOf[B >: A](elem: B, end: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenSeqLike
  92. def lastIndexOf[B >: A](elem: B): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    GenSeqLike
  93. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike
  94. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike
  95. def lastIndexOfSlice[B >: A](that: GenSeq[B], end: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike
  96. def lastIndexOfSlice[B >: A](that: GenSeq[B]): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike
  97. def length: Int

    Length of the array.

    Length of the array.

    Definition Classes
    Array
  98. 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
  99. def lift: (Int) ⇒ Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  100. def map[B, That](f: (UndefOr[String]) ⇒ B)(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  101. def mapResult[NewTo](f: (Array[UndefOr[String]]) ⇒ NewTo): Builder[UndefOr[String], NewTo]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    Builder
  102. def mapResult[NewTo](f: (WrappedArray[UndefOr[String]]) ⇒ NewTo): Builder[UndefOr[String], NewTo]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    Builder
  103. def max[B >: A](implicit cmp: Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  104. def max[B >: A](implicit cmp: Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  105. def max[B >: A](implicit cmp: Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  106. def min[B >: A](implicit cmp: Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  107. def min[B >: A](implicit cmp: Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  108. def min[B >: A](implicit cmp: Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  109. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  110. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  111. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  112. def orElse[A1 <: A, B1 >: B](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  113. def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike → GenSeqLike
  114. def padTo[B >: A, That](len: Int, elem: B)(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike → GenSeqLike
  115. def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike → GenSeqLike
  116. def patch[B >: A, That](from: Int, patch: GenSeq[B], replaced: Int)(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike → GenSeqLike
  117. 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
  118. def prepend(elems: UndefOr[String]*): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    BufferLike
  119. def prependAll(xs: collection.TraversableOnce[UndefOr[String]]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    BufferLike
  120. def product[B >: A](implicit num: Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def product[B >: A](implicit num: Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  122. def product[B >: A](implicit num: Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  123. 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
  124. 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
  125. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  126. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def reduce[A1 >: A](op: (A1, A1) ⇒ A1): A1
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def reduceLeft[B >: A](op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps → IndexedSeqOptimized → TraversableOnce
  129. def reduceLeft[B >: A](op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOptimized → TraversableOnce
  130. def reduceLeft[B >: A](op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce
  131. def reduceLeftOption[B >: A](op: (B, UndefOr[String]) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def reduceLeftOption[B >: A](op: (B, UndefOr[String]) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def reduceLeftOption[B >: A](op: (B, UndefOr[String]) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  134. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  135. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  136. def reduceOption[A1 >: A](op: (A1, A1) ⇒ A1): Option[A1]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  137. def reduceRight[B >: A](op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    ArrayOps → IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  138. def reduceRight[B >: A](op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  139. def reduceRight[B >: A](op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  140. def reduceRightOption[B >: A](op: (UndefOr[String], B) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  141. def reduceRightOption[B >: A](op: (UndefOr[String], B) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  142. def reduceRightOption[B >: A](op: (UndefOr[String], B) ⇒ B): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  143. def remove(n: Int, count: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedArray → BufferLike
  144. def remove(n: Int): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    WrappedArray → BufferLike
  145. 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( name = "reverse" )
  146. def reverseMap[B, That](f: (UndefOr[String]) ⇒ B)(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike → GenSeqLike
  147. def reverseMap[B, That](f: (UndefOr[String]) ⇒ B)(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike → GenSeqLike
  148. def runWith[U](action: (UndefOr[String]) ⇒ U): (Int) ⇒ Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    PartialFunction
  149. def sameElements[B >: A](that: GenIterable[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  150. def sameElements[B >: A](that: GenIterable[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  151. def sameElements[B >: A](that: GenIterable[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  152. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableLike → GenTraversableLike
  153. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  154. def scan[B >: A, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[collection.Iterable[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableLike → GenTraversableLike
  155. def scanLeft[B, That](z: B)(op: (B, UndefOr[String]) ⇒ B)(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableLike → GenTraversableLike
  156. def scanRight[B, That](z: B)(op: (UndefOr[String], B) ⇒ B)(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  157. 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
  158. 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
  159. def sorted[B >: A](implicit ord: math.Ordering[B]): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike
  160. def sorted[B >: A](implicit ord: math.Ordering[B]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike
  161. 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
  162. def sum[B >: A](implicit num: Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  163. def sum[B >: A](implicit num: Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  164. def sum[B >: A](implicit num: Numeric[B]): B
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  165. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  166. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  167. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  168. def toArray[B >: A](implicit arg0: ClassTag[B]): scala.Array[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    TraversableOnce → GenTraversableOnce
  169. def toLocaleString(): String
    Definition Classes
    Object
  170. def toString(): String
    Definition Classes
    AnyRef → Any
  171. def transform(f: (|[String, Unit]) ⇒ |[String, Unit]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike
  172. def trimEnd(n: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    BufferLike
  173. def trimStart(n: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    BufferLike
  174. def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike → GenSeqLike
  175. def union[B >: A, That](that: GenSeq[B])(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike → GenSeqLike
  176. 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
  177. 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()
  178. def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[Array[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    SeqLike → GenSeqLike
  179. def updated[B >: A, That](index: Int, elem: B)(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    SeqLike → GenSeqLike
  180. def valueOf(): scala.Any
    Definition Classes
    Object
  181. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  182. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  183. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  184. def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[Array[UndefOr[String]], (A1, B), That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  185. def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], (A1, B), That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  186. def zip[A1 >: A, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[collection.Iterable[UndefOr[String]], (A1, B), That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  187. def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Array[UndefOr[String]], (A1, B), That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    IterableLike → GenIterableLike
  188. def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], (A1, B), That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  189. def zipAll[B, A1 >: A, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[collection.Iterable[UndefOr[String]], (A1, B), That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  190. def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[Array[UndefOr[String]], (A1, Int), That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  191. def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], (A1, Int), That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    IndexedSeqOptimized → IterableLike → GenIterableLike
  192. def zipWithIndex[A1 >: A, That](implicit bf: CanBuildFrom[collection.Iterable[UndefOr[String]], (A1, Int), That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[UndefOr[String]] performed by method iterableOps in scala.scalajs.js.LowestPrioAnyImplicits.
    Definition Classes
    IterableLike → GenIterableLike
  193. def [B](y: B): (ExecResult, B)
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrowAssoc[ExecResult] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def ++=(xs: collection.TraversableOnce[|[String, Unit]]): ArrayOps[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).++=(xs)
    Definition Classes
    Growable
  2. def ++=(xs: collection.TraversableOnce[|[String, Unit]]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
  3. def +=(elem: |[String, Unit]): ArrayOps[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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 → Builder → Growable
    Annotations
    @inline()
  4. def +=(elem1: |[String, Unit], elem2: |[String, Unit], elems: |[String, Unit]*): ArrayOps[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    Growable
  5. def +=(elem: |[String, Unit]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    WrappedArray → Builder → BufferLike → Growable
    Annotations
    @inline()
  6. def +=(elem1: |[String, Unit], elem2: |[String, Unit], elems: |[String, Unit]*): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
  7. def addString(b: StringBuilder): StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).addString(b)
    Definition Classes
    TraversableOnce
  8. def addString(b: StringBuilder, sep: String): StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).addString(b, sep)
    Definition Classes
    TraversableOnce
  9. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).addString(b, start, sep, end)
    Definition Classes
    TraversableOnce
  10. def addString(b: StringBuilder): StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce
  11. def addString(b: StringBuilder, sep: String): StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce
  12. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce
  13. def addString(b: StringBuilder): StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce
  14. def addString(b: StringBuilder, sep: String): StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce
  15. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce
  16. 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 to ArrayOps[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]]).aggregate(z)(seqop, combop)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  17. 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 to WrappedArray[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
    TraversableOnce → GenTraversableOnce
  18. 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 to IterableOps[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
    TraversableOnce → GenTraversableOnce
  19. def apply(index: Int): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    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: ArrayOps[UndefOr[String]]).apply(index)
    Definition Classes
    ArrayOps → SeqLike → GenSeqLike
    Annotations
    @inline()
  20. def apply(index: Int): B

    Access the element at the given index.

    Access the element at the given index.

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).apply(index)
    Definition Classes
    Array
    Annotations
    @JSBracketAccess()
  21. def apply(index: Int): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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 → BufferLike → SeqLike → GenSeqLike → Function1
    Annotations
    @inline()
  22. def canEqual(that: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).canEqual(that)
    Definition Classes
    IterableLike → Equals
  23. def canEqual(that: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).canEqual(that)
    Definition Classes
    IterableLike → Equals
  24. def canEqual(that: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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]]).canEqual(that)
    Definition Classes
    IterableLike → Equals
  25. def clear(): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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 → Builder → Growable → Clearable
    Annotations
    @inline()
  26. def clear(): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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 → BufferLike → Growable → Clearable
    Annotations
    @inline()
  27. def clone(): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    BufferLike → Cloneable → AnyRef
  28. def collect[B, That](pf: PartialFunction[UndefOr[String], B])(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).collect(pf)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  29. def collect[B, That](pf: PartialFunction[UndefOr[String], B])(implicit bf: CanBuildFrom[collection.Iterable[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  30. def collectFirst[B](pf: PartialFunction[UndefOr[String], B]): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).collectFirst(pf)
    Definition Classes
    TraversableOnce
  31. def collectFirst[B](pf: PartialFunction[UndefOr[String], B]): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce
  32. def collectFirst[B](pf: PartialFunction[UndefOr[String], B]): Option[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce
  33. def combinations(n: Int): collection.Iterator[Array[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    SeqLike
  34. def combinations(n: Int): collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    SeqLike
  35. def companion: GenericCompanion[WrappedArray]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    WrappedArray → IndexedSeq → IndexedSeq → Buffer → Seq → Iterable → Traversable → Seq → GenSeq → Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  36. def companion: GenericCompanion[collection.Iterable]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  37. 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

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).concat(items)
    Definition Classes
    Array
  38. def containsSlice[B](that: GenSeq[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).containsSlice(that)
    Definition Classes
    SeqLike
  39. def containsSlice[B](that: GenSeq[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).containsSlice(that)
    Definition Classes
    SeqLike
  40. def corresponds[B](that: GenSeq[B])(p: (UndefOr[String], B) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).corresponds(that)(p)
    Definition Classes
    SeqLike → GenSeqLike
  41. def corresponds[B](that: GenSeq[B])(p: (UndefOr[String], B) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    SeqLike → GenSeqLike
  42. def count(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    TraversableOnce → GenTraversableOnce
  43. def count(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce → GenTraversableOnce
  44. def count(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  45. def deep: collection.IndexedSeq[scala.Any]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).deep
    Definition Classes
    ArrayLike
  46. def deep: collection.IndexedSeq[scala.Any]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).deep
    Definition Classes
    ArrayLike
  47. def distinct: Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    SeqLike → GenSeqLike
  48. def distinct: WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    SeqLike → GenSeqLike
  49. def drop(n: Int): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  50. def drop(n: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  51. def drop(n: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableLike → GenTraversableLike
  52. def dropRight(n: Int): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → IterableLike
  53. def dropRight(n: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → IterableLike
  54. def dropRight(n: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike
  55. def dropWhile(p: (UndefOr[String]) ⇒ Boolean): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  56. def dropWhile(p: (UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  57. def dropWhile(p: (UndefOr[String]) ⇒ Boolean): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → GenTraversableLike
  58. def endsWith[B](that: GenSeq[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).endsWith(that)
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  59. def endsWith[B](that: GenSeq[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).endsWith(that)
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  60. def equals(that: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    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: ArrayOps[UndefOr[String]]).equals(that)
    Definition Classes
    GenSeqLike → Equals → Any
  61. def equals(that: scala.Any): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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(that)
    Definition Classes
    GenSeqLike → Equals → Any
  62. def exists(p: (UndefOr[String]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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(p)
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  63. def exists(p: (UndefOr[String]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  64. def exists(p: (UndefOr[String]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  65. def filter(p: (UndefOr[String]) ⇒ Boolean): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    TraversableLike → GenTraversableLike
  66. def filter(p: (UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  67. def filter(p: (UndefOr[String]) ⇒ Boolean): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  68. def filterNot(p: (UndefOr[String]) ⇒ Boolean): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    TraversableLike → GenTraversableLike
  69. def filterNot(p: (UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  70. def filterNot(p: (UndefOr[String]) ⇒ Boolean): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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(p)
    Definition Classes
    TraversableLike → GenTraversableLike
  71. def find(p: (UndefOr[String]) ⇒ Boolean): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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(p)
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  72. def find(p: (UndefOr[String]) ⇒ Boolean): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  73. def find(p: (UndefOr[String]) ⇒ Boolean): Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  74. def flatMap[B, That](f: (UndefOr[String]) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).flatMap(f)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  75. def flatMap[B, That](f: (UndefOr[String]) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  76. def flatten[B](implicit asTraversable: (UndefOr[String]) ⇒ GenTraversableOnce[B]): WrappedArray[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).flatten(asTraversable)
    Definition Classes
    GenericTraversableTemplate
  77. def flatten[B](implicit asTraversable: (UndefOr[String]) ⇒ GenTraversableOnce[B]): collection.Iterable[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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(asTraversable)
    Definition Classes
    GenericTraversableTemplate
  78. def foldLeft[B](z: B)(op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).foldLeft(z)(op)
    Definition Classes
    IndexedSeqOptimized → TraversableOnce → GenTraversableOnce
  79. def foldLeft[B](z: B)(op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → TraversableOnce → GenTraversableOnce
  80. def foldRight[B](z: B)(op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).foldRight(z)(op)
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  81. def foldRight[B](z: B)(op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → IterableLike → TraversableOnce → GenTraversableOnce
  82. def forall(p: (UndefOr[String]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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(p)
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  83. def forall(p: (UndefOr[String]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  84. def forall(p: (UndefOr[String]) ⇒ Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  85. def foreach[U](f: (UndefOr[String]) ⇒ U): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).foreach(f)
    Definition Classes
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  86. def foreach[U](f: (UndefOr[String]) ⇒ U): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  87. def genericBuilder[B]: Builder[B, WrappedArray[B]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).genericBuilder
    Definition Classes
    GenericTraversableTemplate
  88. def genericBuilder[B]: Builder[B, collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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]]).genericBuilder
    Definition Classes
    GenericTraversableTemplate
  89. def groupBy[K](f: (UndefOr[String]) ⇒ K): collection.immutable.Map[K, Array[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).groupBy(f)
    Definition Classes
    TraversableLike → GenTraversableLike
  90. def groupBy[K](f: (UndefOr[String]) ⇒ K): collection.immutable.Map[K, WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableLike → GenTraversableLike
  91. def groupBy[K](f: (UndefOr[String]) ⇒ K): collection.immutable.Map[K, collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → GenTraversableLike
  92. def grouped(size: Int): collection.Iterator[Array[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IterableLike
  93. def grouped(size: Int): collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IterableLike
  94. def grouped(size: Int): collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike
  95. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).hasDefiniteSize
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  96. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableLike → TraversableOnce → GenTraversableOnce
  97. def hasDefiniteSize: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → TraversableOnce → GenTraversableOnce
  98. 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

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).hasOwnProperty(v)
    Definition Classes
    Object
  99. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    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: ArrayOps[UndefOr[String]]).hashCode()
    Definition Classes
    IndexedSeqLike → GenSeqLike → Any
  100. def hashCode(): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqLike → GenSeqLike → Any
  101. def head: UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  102. def head: UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  103. def head: UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableLike → GenTraversableLike
  104. def headOption: Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    TraversableLike → GenTraversableLike
  105. def headOption: Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableLike → GenTraversableLike
  106. def headOption: Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → GenTraversableLike
  107. def indexWhere(p: (UndefOr[String]) ⇒ Boolean, from: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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(p, from)
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  108. def indexWhere(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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(p)
    Definition Classes
    GenSeqLike
  109. def indexWhere(p: (UndefOr[String]) ⇒ Boolean, from: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → SeqLike → GenSeqLike
  110. def indexWhere(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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)
    Definition Classes
    GenSeqLike
  111. def indices: collection.immutable.Range
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    SeqLike
  112. def indices: collection.immutable.Range
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    SeqLike
  113. def init: Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  114. def init: WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  115. def init: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → GenTraversableLike
  116. def inits: collection.Iterator[Array[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    TraversableLike
  117. def inits: collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableLike
  118. def inits: collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike
  119. def isDefinedAt(idx: Int): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  120. def isDefinedAt(idx: Int): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).isDefinedAt(idx)
    Definition Classes
    GenSeqLike
  121. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  122. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → SeqLike → IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  123. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  124. 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.

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).isPrototypeOf(v)
    Definition Classes
    Object
  125. final def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).isTraversableAgain
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  126. final def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableLike → GenTraversableLike → GenTraversableOnce
  127. final def isTraversableAgain: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → GenTraversableLike → GenTraversableOnce
  128. def iterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqLike → IterableLike → GenIterableLike
  129. def iterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqLike → IterableLike → GenIterableLike
  130. def iterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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 → IterableLike → GenIterableLike
    Annotations
    @inline()
  131. 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.

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).join(seperator)
    Definition Classes
    Array
  132. def jsIterator(): Iterator[B]

    ECMAScript 6 JavaScript Iterator for this Array.

    ECMAScript 6 JavaScript Iterator for this Array.

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).jsIterator()
    Definition Classes
    ArrayIterable
    Annotations
    @JSName( symbol = js.Symbol.iterator )
  133. def jsSlice(start: Int = 0, end: Int = Int.MaxValue): Array[B]

    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

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).jsSlice(start, end)
    Definition Classes
    Array
    Annotations
    @JSName( name = "slice" )
  134. def last: UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  135. def last: UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  136. def last: UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → GenTraversableLike
  137. def lastIndexWhere(p: (UndefOr[String]) ⇒ Boolean, end: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → SeqLike → GenSeqLike
  138. def lastIndexWhere(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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)
    Definition Classes
    GenSeqLike
  139. def lastIndexWhere(p: (UndefOr[String]) ⇒ Boolean, end: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → SeqLike → GenSeqLike
  140. def lastIndexWhere(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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)
    Definition Classes
    GenSeqLike
  141. def lastOption: Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    TraversableLike → GenTraversableLike
  142. def lastOption: Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableLike → GenTraversableLike
  143. def lastOption: Option[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → GenTraversableLike
  144. def length: Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    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: ArrayOps[UndefOr[String]]).length
    Definition Classes
    ArrayOps → SeqLike → GenSeqLike
    Annotations
    @inline()
  145. def length: Int

    Length of the array.

    Length of the array.

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).length
    Definition Classes
    Array
  146. def length: Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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 → BufferLike → SeqLike → GenSeqLike
    Annotations
    @inline()
  147. def lengthCompare(len: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → SeqLike
  148. def lengthCompare(len: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → SeqLike
  149. 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.

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).length_=(v)
    Definition Classes
    Array
  150. def map[B, That](f: (UndefOr[String]) ⇒ B)(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).map(f)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  151. def map[B, That](f: (UndefOr[String]) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  152. def maxBy[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).maxBy(f)(cmp)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  153. def maxBy[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce → GenTraversableOnce
  154. def maxBy[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  155. def minBy[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).minBy(f)(cmp)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  156. def minBy[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce → GenTraversableOnce
  157. def minBy[B](f: (UndefOr[String]) ⇒ B)(implicit cmp: Ordering[B]): UndefOr[String]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  158. def mkString: String
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).mkString
    Definition Classes
    TraversableOnce → GenTraversableOnce
  159. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).mkString(sep)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  160. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).mkString(start, sep, end)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  161. def mkString: String
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce → GenTraversableOnce
  162. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce → GenTraversableOnce
  163. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce → GenTraversableOnce
  164. def mkString: String
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  165. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  166. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  167. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    TraversableOnce → GenTraversableOnce
  168. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce → GenTraversableOnce
  169. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  170. def par: ParSeq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).par
    Definition Classes
    Parallelizable
  171. def par: ParSeq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).par
    Definition Classes
    Parallelizable
  172. def par: ParIterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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]]).par
    Definition Classes
    Parallelizable
  173. def partition(p: (UndefOr[String]) ⇒ Boolean): (Array[UndefOr[String]], Array[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    TraversableLike → GenTraversableLike
  174. def partition(p: (UndefOr[String]) ⇒ Boolean): (WrappedArray[UndefOr[String]], WrappedArray[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableLike → GenTraversableLike
  175. 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 to IterableOps[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
    TraversableLike → GenTraversableLike
  176. def permutations: collection.Iterator[Array[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    SeqLike
  177. def permutations: collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    SeqLike
  178. def pop(): B

    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

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).pop()
    Definition Classes
    Array
  179. def prefixLength(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).prefixLength(p)
    Definition Classes
    GenSeqLike
  180. def prefixLength(p: (UndefOr[String]) ⇒ Boolean): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).prefixLength(p)
    Definition Classes
    GenSeqLike
  181. 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

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).propertyIsEnumerable(v)
    Definition Classes
    Object
  182. def push(items: B*): 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

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).push(items)
    Definition Classes
    Array
  183. def repr: Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).repr
    Definition Classes
    ArrayOps → TraversableLike → GenTraversableLike
  184. def repr: WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableLike → GenTraversableLike
  185. def repr: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → GenTraversableLike
  186. def result(): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).result()
    Definition Classes
    ArrayOps → Builder
    Annotations
    @inline()
  187. def result(): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).result()
    Definition Classes
    WrappedArray → Builder
    Annotations
    @inline()
  188. def reverse: Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → SeqLike → GenSeqLike
  189. def reverse: WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → SeqLike → GenSeqLike
  190. def reverseInPlace(): Array[B]

    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

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).reverseInPlace()
    Definition Classes
    Array
    Annotations
    @JSName( name = "reverse" )
  191. def reverseIterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → SeqLike
  192. def reverseIterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → SeqLike
  193. def scanLeft[B, That](z: B)(op: (B, UndefOr[String]) ⇒ B)(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).scanLeft(z)(op)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  194. def scanLeft[B, That](z: B)(op: (B, UndefOr[String]) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
  195. def scanRight[B, That](z: B)(op: (UndefOr[String], B) ⇒ B)(implicit bf: CanBuildFrom[WrappedArray[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  196. def scanRight[B, That](z: B)(op: (UndefOr[String], B) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[UndefOr[String]], B, That]): That
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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)(bf)
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  197. def segmentLength(p: (UndefOr[String]) ⇒ Boolean, from: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).segmentLength(p, from)
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  198. def segmentLength(p: (UndefOr[String]) ⇒ Boolean, from: Int): Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).segmentLength(p, from)
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  199. def seq: IndexedSeq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).seq
    Definition Classes
    ArrayOps → IndexedSeqLike → GenSeqLike → Parallelizable → TraversableOnce → GenTraversableOnce
  200. def seq: collection.mutable.IndexedSeq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeq → IndexedSeq → IndexedSeqLike → Seq → Seq → GenSeq → GenSeqLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  201. def seq: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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 → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  202. def shift(): B

    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

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).shift()
    Definition Classes
    Array
  203. def size: Int
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  204. def size: Int
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    SeqLike → GenTraversableLike → TraversableOnce → GenTraversableOnce
  205. def size: Int
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  206. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).sizeHint(coll, delta)
    Definition Classes
    Builder
  207. def sizeHint(coll: TraversableLike[_, _]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).sizeHint(coll)
    Definition Classes
    Builder
  208. def sizeHint(size: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).sizeHint(size)
    Definition Classes
    Builder
  209. def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).sizeHint(coll, delta)
    Definition Classes
    Builder
  210. def sizeHint(coll: TraversableLike[_, _]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).sizeHint(coll)
    Definition Classes
    Builder
  211. def sizeHint(size: Int): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).sizeHint(size)
    Definition Classes
    Builder
  212. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).sizeHintBounded(size, boundingColl)
    Definition Classes
    Builder
  213. def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).sizeHintBounded(size, boundingColl)
    Definition Classes
    Builder
  214. def slice(from: Int, until: Int): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  215. def slice(from: Int, until: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  216. def slice(from: Int, until: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableLike → GenTraversableLike
  217. def sliding(size: Int, step: Int): collection.Iterator[Array[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IterableLike
  218. def sliding(size: Int): collection.Iterator[Array[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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)
    Definition Classes
    IterableLike
  219. def sliding(size: Int, step: Int): collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IterableLike
  220. def sliding(size: Int): collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IterableLike
  221. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike
  222. def sliding(size: Int): collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike
  223. def sort(compareFn: Function2[B, B, Int] = ???): Array[B]

    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

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).sort(compareFn)
    Definition Classes
    Array
  224. def sortBy[B](f: (UndefOr[String]) ⇒ B)(implicit ord: math.Ordering[B]): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).sortBy(f)(ord)
    Definition Classes
    SeqLike
  225. def sortBy[B](f: (UndefOr[String]) ⇒ B)(implicit ord: math.Ordering[B]): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).sortBy(f)(ord)
    Definition Classes
    SeqLike
  226. def sortWith(lt: (UndefOr[String], UndefOr[String]) ⇒ Boolean): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    SeqLike
  227. def sortWith(lt: (UndefOr[String], UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    SeqLike
  228. def span(p: (UndefOr[String]) ⇒ Boolean): (Array[UndefOr[String]], Array[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  229. def span(p: (UndefOr[String]) ⇒ Boolean): (WrappedArray[UndefOr[String]], WrappedArray[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  230. 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 to IterableOps[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
    TraversableLike → GenTraversableLike
  231. def splice(index: Int, deleteCount: Int, items: B*): Array[B]

    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

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).splice(index, deleteCount, items)
    Definition Classes
    Array
  232. def splitAt(n: Int): (Array[UndefOr[String]], Array[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  233. def splitAt(n: Int): (WrappedArray[UndefOr[String]], WrappedArray[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  234. def splitAt(n: Int): (collection.Iterable[UndefOr[String]], collection.Iterable[UndefOr[String]])
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → GenTraversableLike
  235. def startsWith[B](that: GenSeq[B], offset: Int): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).startsWith(that, offset)
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  236. def startsWith[B](that: GenSeq[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).startsWith(that)
    Definition Classes
    GenSeqLike
  237. def startsWith[B](that: GenSeq[B], offset: Int): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).startsWith(that, offset)
    Definition Classes
    IndexedSeqOptimized → SeqLike → GenSeqLike
  238. def startsWith[B](that: GenSeq[B]): Boolean
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).startsWith(that)
    Definition Classes
    GenSeqLike
  239. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).stringPrefix
    Definition Classes
    TraversableLike → GenTraversableLike
  240. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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]]).stringPrefix
    Definition Classes
    WrappedArray → BufferLike → TraversableLike → GenTraversableLike
    Annotations
    @inline()
  241. def stringPrefix: String
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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]]).stringPrefix
    Definition Classes
    TraversableLike → GenTraversableLike
  242. def tail: Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  243. def tail: WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → TraversableLike → GenTraversableLike
  244. def tail: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → GenTraversableLike
  245. def tails: collection.Iterator[Array[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    TraversableLike
  246. def tails: collection.Iterator[WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableLike
  247. def tails: collection.Iterator[collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike
  248. def take(n: Int): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  249. def take(n: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  250. def take(n: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableLike → GenTraversableLike
  251. def takeRight(n: Int): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → IterableLike
  252. def takeRight(n: Int): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → IterableLike
  253. def takeRight(n: Int): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike
  254. def takeWhile(p: (UndefOr[String]) ⇒ Boolean): Array[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  255. def takeWhile(p: (UndefOr[String]) ⇒ Boolean): WrappedArray[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → IterableLike → TraversableLike → GenTraversableLike
  256. def takeWhile(p: (UndefOr[String]) ⇒ Boolean): collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableLike → GenTraversableLike
  257. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, UndefOr[String], Col[UndefOr[String]]]): Col[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).to(cbf)
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  258. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, UndefOr[String], Col[UndefOr[String]]]): Col[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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(cbf)
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  259. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, UndefOr[String], Col[UndefOr[String]]]): Col[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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(cbf)
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  260. def toBuffer[A1 >: A]: Buffer[A1]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).toBuffer
    Definition Classes
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  261. def toBuffer[A1 >: A]: Buffer[A1]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqLike → TraversableOnce → GenTraversableOnce
  262. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  263. def toIndexedSeq: collection.immutable.IndexedSeq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    TraversableOnce → GenTraversableOnce
  264. def toIndexedSeq: collection.immutable.IndexedSeq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce → GenTraversableOnce
  265. def toIndexedSeq: collection.immutable.IndexedSeq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  266. def toIterable: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).toIterable
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  267. def toIterable: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IterableLike → TraversableOnce → GenTraversableOnce
  268. def toIterable: collection.Iterable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableOnce → GenTraversableOnce
  269. def toIterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).toIterator
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  270. def toIterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  271. def toIterator: collection.Iterator[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  272. def toList: List[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).toList
    Definition Classes
    IndexedSeqOptimized → TraversableOnce → GenTraversableOnce
  273. def toList: List[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqOptimized → TraversableOnce → GenTraversableOnce
  274. def toList: List[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  275. def toLocaleString(): String
    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).toLocaleString()
    Definition Classes
    Object
  276. def toMap[T, U](implicit ev: <:<[UndefOr[String], (T, U)]): collection.immutable.Map[T, U]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).toMap(ev)
    Definition Classes
    TraversableOnce → GenTraversableOnce
  277. def toMap[T, U](implicit ev: <:<[UndefOr[String], (T, U)]): collection.immutable.Map[T, U]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce → GenTraversableOnce
  278. def toMap[T, U](implicit ev: <:<[UndefOr[String], (T, U)]): collection.immutable.Map[T, U]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  279. def toSeq: collection.Seq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  280. def toSeq: collection.Seq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    SeqLike → GenSeqLike → TraversableOnce → GenTraversableOnce
  281. def toSeq: collection.Seq[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  282. def toSet[B >: A]: collection.immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).toSet
    Definition Classes
    TraversableOnce → GenTraversableOnce
  283. def toSet[B >: A]: collection.immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce → GenTraversableOnce
  284. def toSet[B >: A]: collection.immutable.Set[B]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  285. def toStream: collection.immutable.Stream[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).toStream
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  286. def toStream: collection.immutable.Stream[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IterableLike → TraversableLike → GenTraversableOnce
  287. def toStream: collection.immutable.Stream[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableLike → GenTraversableOnce
  288. def toString(): String
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    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: ArrayOps[UndefOr[String]]).toString()
    Definition Classes
    SeqLike → TraversableLike → Any
  289. def toString(): String
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    SeqLike → TraversableLike → Any
  290. def toString(): String
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → Any
  291. def toTraversable: collection.Traversable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).toTraversable
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  292. def toTraversable: collection.Traversable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  293. def toTraversable: collection.Traversable[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  294. def toVector: Vector[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).toVector
    Definition Classes
    TraversableOnce → GenTraversableOnce
  295. def toVector: Vector[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce → GenTraversableOnce
  296. def toVector: Vector[UndefOr[String]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
  297. def transpose[B](implicit asTraversable: (UndefOr[String]) ⇒ GenTraversableOnce[B]): WrappedArray[WrappedArray[B]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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(asTraversable)
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  298. def transpose[B](implicit asTraversable: (UndefOr[String]) ⇒ GenTraversableOnce[B]): collection.Iterable[collection.Iterable[B]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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(asTraversable)
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  299. def unshift(items: B*): 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

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).unshift(items)
    Definition Classes
    Array
  300. 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 to WrappedArray[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]]).unzip(asPair)
    Definition Classes
    GenericTraversableTemplate
  301. 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 to IterableOps[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
    GenericTraversableTemplate
  302. 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 to WrappedArray[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]]).unzip3(asTriple)
    Definition Classes
    GenericTraversableTemplate
  303. 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 to IterableOps[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
    GenericTraversableTemplate
  304. def update(index: Int, element: UndefOr[String]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[UndefOr[String]] performed by method jsArrayOps in scala.scalajs.js.Any.
    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: ArrayOps[UndefOr[String]]).update(index, element)
    Definition Classes
    ArrayOps → IndexedSeqLike
    Annotations
    @inline()
  305. def update(index: Int, value: B): Unit

    Set the element at the given index.

    Set the element at the given index.

    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).update(index, value)
    Definition Classes
    Array
    Annotations
    @JSBracketAccess()
  306. def update(index: Int, elem: UndefOr[String]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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 → IndexedSeqLike → BufferLike → SeqLike
    Annotations
    @inline()
  307. def valueOf(): scala.Any
    Implicit
    This member is added by an implicit conversion from ExecResult to Array[B] performed by method fromTypeConstructor in scala.scalajs.js.|. This conversion will take place only if an implicit value of type Evidence[Array[UndefOr[String]], Array[B]] is in scope.
    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: Array[B]).valueOf()
    Definition Classes
    Object
  308. def view(from: Int, until: Int): IndexedSeqView[UndefOr[String], Array[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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(from, until)
    Definition Classes
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  309. def view: IndexedSeqView[UndefOr[String], Array[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  310. def view(from: Int, until: Int): IndexedSeqView[UndefOr[String], WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  311. def view: IndexedSeqView[UndefOr[String], WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    IndexedSeqLike → SeqLike → IterableLike → TraversableLike
  312. def view(from: Int, until: Int): IterableView[UndefOr[String], collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableLike
  313. def view: IterableView[UndefOr[String], collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    IterableLike → TraversableLike
  314. def withFilter(p: (UndefOr[String]) ⇒ Boolean): FilterMonadic[UndefOr[String], Array[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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
    TraversableLike → FilterMonadic
  315. def withFilter(p: (UndefOr[String]) ⇒ Boolean): FilterMonadic[UndefOr[String], WrappedArray[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableLike → FilterMonadic
  316. def withFilter(p: (UndefOr[String]) ⇒ Boolean): FilterMonadic[UndefOr[String], collection.Iterable[UndefOr[String]]]
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableLike → FilterMonadic

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]])./:(z)(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  2. def /:[B](z: B)(op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  3. def /:[B](z: B)(op: (B, UndefOr[String]) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  4. def :\[B](z: B)(op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to ArrayOps[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]]).:\(z)(op)
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

  5. def :\[B](z: B)(op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[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
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

  6. def :\[B](z: B)(op: (UndefOr[String], B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from ExecResult to IterableOps[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
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

  7. def <<(cmd: Message[UndefOr[String]]): Unit
    Implicit
    This member is added by an implicit conversion from ExecResult to WrappedArray[UndefOr[String]] performed by method wrapArray in scala.scalajs.js.LowPrioAnyImplicits.
    Definition Classes
    BufferLike → Scriptable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) scripting is deprecated

  8. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ExecResult to StringFormat[ExecResult] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

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 from from ExecResult to |[B1, B2]

Inherited by implicit conversion jsArrayOps from ExecResult to ArrayOps[UndefOr[String]]

Inherited by implicit conversion fromTypeConstructor from ExecResult to Array[B]

Inherited by implicit conversion wrapArray from ExecResult to WrappedArray[UndefOr[String]]

Inherited by implicit conversion iterableOps from ExecResult to IterableOps[UndefOr[String]]

Inherited by implicit conversion any2stringadd from ExecResult to any2stringadd[ExecResult]

Inherited by implicit conversion StringFormat from ExecResult to StringFormat[ExecResult]

Inherited by implicit conversion Ensuring from ExecResult to Ensuring[ExecResult]

Inherited by implicit conversion ArrowAssoc from ExecResult to ArrowAssoc[ExecResult]

Ungrouped