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
@RawJSType()
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 index: Int
  2. 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. val array: Array[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
  35. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  36. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  37. 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
  38. 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()
  39. 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
  40. 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
  41. 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
  42. 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
  43. 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
  44. 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
  45. 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
  46. 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
  47. 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
  48. 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
  49. 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
  50. 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
  51. 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
  52. 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
  53. 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
  54. 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
  55. 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
  56. 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
  57. 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
  58. 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
  59. 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
  60. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  61. def equals(arg0: scala.Any): Boolean
    Definition Classes
    AnyRef → Any
  62. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  63. def flatMap[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
  64. 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
  65. 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
  66. 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
  67. 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
  68. 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
  69. 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
  70. 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
    @inline()
  71. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  72. 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
  73. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  74. 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
  75. 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
  76. 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
  77. 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
  78. 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
  79. 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
  80. 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
  81. 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
  82. 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
  83. 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
    Annotations
    @inline()
  84. 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
  85. 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
  86. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  87. 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
  88. 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
  89. 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 )
  90. 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" )
  91. 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
  92. 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
  93. 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
  94. 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
  95. 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
  96. 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
  97. 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
  98. 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
  99. def length: Int

    Length of the array.

    Length of the array.

    Definition Classes
    Array
  100. 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
  101. 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
  102. 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
  103. 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
  104. 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
  105. 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
  106. 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
  107. 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
  108. 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
  109. 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
  110. 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
  111. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  112. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  113. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  114. 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
  115. 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
  116. 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
  117. 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
  118. 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
  119. 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
  120. 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
  121. 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
  122. 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
  123. 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
  124. 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
  125. 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
  126. 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
  127. 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
  128. 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
  129. 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
  130. 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
  131. 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
  132. 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
  133. 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
  134. 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
  135. 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
  136. 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
  137. 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
  138. 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
  139. 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
  140. 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
  141. 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
  142. 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
  143. 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
  144. 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
  145. 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
    Annotations
    @inline()
  146. 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
    Annotations
    @inline()
  147. 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" )
  148. 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
  149. 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
  150. 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
  151. 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
  152. 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
  153. 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
  154. 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
  155. 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
  156. 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
  157. 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
  158. 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.

  159. 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
  160. 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
  161. 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
  162. 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
  163. 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
  164. 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
  165. 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
  166. 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
  167. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  168. 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
  169. 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
  170. 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
  171. def toLocaleString(): String
    Definition Classes
    Object
  172. def toString(): String
    Definition Classes
    AnyRef → Any
  173. 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
  174. 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
  175. 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
  176. 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
  177. 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
  178. 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
  179. 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()
  180. 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
  181. 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
  182. def valueOf(): scala.Any
    Definition Classes
    Object
  183. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  184. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  185. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  186. 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
  187. 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
  188. 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
  189. 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
  190. 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
  191. 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
  192. 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
  193. 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
  194. 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
  195. 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 /:[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
  8. 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
  9. 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
  10. 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
  11. 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
  12. 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
  13. 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
  14. 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
  15. 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
  16. 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
  17. 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
  18. 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
  19. 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
  20. 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
  21. 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
  22. 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
  23. 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
  24. 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
  25. 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()
  26. 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()
  27. 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()
  28. 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
  29. 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
  30. 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
  31. 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()
  32. 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()
  33. 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
  34. 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
  35. 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
  36. 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
  37. 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
  38. 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
  39. 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
  40. 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
  41. 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
  42. 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
  43. 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
  44. 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
  45. 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
  46. 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
  47. 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
  48. 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
  49. 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
  50. 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
  51. 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
  52. 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
  53. 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
  54. 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
  55. 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
  56. 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
  57. 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
  58. 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
  59. 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
  60. 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
  61. 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
  62. 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
  63. 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
  64. 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
  65. 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
  66. 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
  67. 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
  68. 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
  69. 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
  70. 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
  71. 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
  72. 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
  73. 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
  74. 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
  75. 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
  76. 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
  77. 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
  78. 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
  79. 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
  80. 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
  81. 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
  82. 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
  83. 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
  84. 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
  85. 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
  86. 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
  87. 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
  88. 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
  89. 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
  90. 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
  91. 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
  92. 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
  93. 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
  94. 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
  95. def groupBy[K](f: (UndefOr[String]) ⇒ K): 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
  96. def groupBy[K](f: (UndefOr[String]) ⇒ K): 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
  97. def groupBy[K](f: (UndefOr[String]) ⇒ K): 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
  98. 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
  99. 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
  100. 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
  101. 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
  102. 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
  103. 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
  104. 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
  105. 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
  106. 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
  107. 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
  108. 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
  109. 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
  110. 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
  111. 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
  112. 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
  113. 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
  114. 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
  115. 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
  116. 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
  117. 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
  118. 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
  119. 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
  120. 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
  121. 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
  122. 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
  123. 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
  124. 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
  125. 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
  126. 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
  127. 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
  128. 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
  129. 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
  130. 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
  131. 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
  132. 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
  133. 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
  134. 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
  135. 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
  136. 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()
  137. 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
  138. 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 )
  139. 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" )
  140. 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
  141. 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
  142. 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
  143. 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
  144. 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
  145. 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
  146. 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
  147. 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
  148. 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
  149. 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
  150. 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()
  151. 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
  152. 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()
  153. 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
  154. 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
  155. 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
  156. 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
  157. 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
  158. 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
  159. 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
  160. 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
  161. 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
  162. 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
  163. 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
  164. 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
  165. 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
  166. 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
  167. 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
  168. 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
  169. 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
  170. 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
  171. 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
  172. 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
  173. 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
  174. 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
  175. 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
  176. 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
  177. 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
  178. 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
  179. 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
  180. 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
  181. 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
  182. 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
  183. 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
  184. 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
  185. 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
  186. 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
  187. 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
  188. 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
  189. 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
  190. 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
  191. 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
  192. 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()
  193. 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()
  194. 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
  195. 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
  196. 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" )
  197. 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
  198. 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
  199. 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
  200. 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
  201. 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.

  202. 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.

  203. 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
  204. 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
  205. 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
  206. 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
  207. 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
  208. 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
  209. 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
  210. 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
  211. 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
  212. 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
  213. 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
  214. 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
  215. 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
  216. 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
  217. 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
  218. 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
  219. 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
  220. 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
  221. 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
  222. 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
  223. 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
  224. 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
  225. 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
  226. 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
  227. 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
  228. 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
  229. 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
  230. 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
  231. 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
  232. 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
  233. 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
  234. 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
  235. 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
  236. 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
  237. 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
  238. 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
  239. 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
  240. 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
  241. 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
  242. 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
  243. 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
  244. 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
  245. 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
  246. 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()
  247. 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
  248. 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
  249. 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
  250. 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
  251. 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
  252. 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
  253. 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
  254. 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
  255. 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
  256. 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
  257. 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
  258. 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
  259. 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
  260. 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
  261. 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
  262. 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
  263. 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
  264. 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
  265. 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
  266. 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
  267. 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
  268. 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
  269. 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
  270. 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
  271. 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
  272. 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
  273. 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
  274. 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
  275. 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" )
  276. 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" )
  277. 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" )
  278. 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
    TraversableOnce → GenTraversableOnce
  279. 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
    TraversableOnce → GenTraversableOnce
  280. 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
  281. 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
  282. def toMap[T, U](implicit ev: <:<[UndefOr[String], (T, U)]): 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
  283. def toMap[T, U](implicit ev: <:<[UndefOr[String], (T, U)]): 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
  284. def toMap[T, U](implicit ev: <:<[UndefOr[String], (T, U)]): 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
  285. 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
  286. 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
  287. 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
  288. def toSet[B >: A]: 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
  289. def toSet[B >: A]: 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
  290. def toSet[B >: A]: 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
  291. 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
  292. 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
  293. 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
  294. 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
  295. 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
  296. 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
  297. 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" )
  298. 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" )
  299. 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" )
  300. 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
  301. 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
  302. 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
  303. 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.

  304. 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.

  305. 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
  306. 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
  307. 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
  308. 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
  309. 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
  310. 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()
  311. 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()
  312. 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()
  313. 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
  314. 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
  315. 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
  316. 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
  317. 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
  318. 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
  319. 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
  320. 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
  321. 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
  322. 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 <<(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

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