(Changed in version 2.8.0) ++
creates a new buffer. Use ++=
to add an element from this buffer and return that buffer itself.
(Changed in version 2.8.0) -
creates a new buffer. Use -=
to remove an element from this buffer and return that buffer itself.
(Changed in version 2.8.0) -
creates a new buffer. Use -=
to remove an element from this buffer and return that buffer itself.
(Changed in version 2.8.0) --
creates a new buffer. Use --=
to remove an element from this buffer and return that buffer itself.
Access the element at the given index.
Access the element at the given index.
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
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
Tests whether this object is in the prototype chain of another object.
Tests whether this object is in the prototype chain of another object.
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.
ECMAScript 6 JavaScript Iterator for this Array.
ECMAScript 6 JavaScript Iterator for this Array.
The slice() method returns a shallow copy of a portion of an array.
Length of the array.
Length of the array.
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.
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
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
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
The reverse() method reverses an array in place.
(Changed in version 2.9.0) The behavior of scanRight
has changed. The previous behavior can be reproduced with scanRight.reverse.
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
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
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 where to start changes
Number of elements to delete from index
Elements to insert at index
An array of the elements that were deleted
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
Set the element at the given index.
Set the element at the given index.
(execResult: ArrayOps[UndefOr[String]]).++=(xs)
(execResult: WrappedArray[UndefOr[String]]).++=(xs)
(execResult: ArrayOps[UndefOr[String]]).+=(elem)
(execResult: ArrayOps[UndefOr[String]]).+=(elem1, elem2, elems)
(execResult: WrappedArray[UndefOr[String]]).+=(elem)
(execResult: WrappedArray[UndefOr[String]]).+=(elem1, elem2, elems)
(execResult: ArrayOps[UndefOr[String]])./:(z)(op)
(execResult: WrappedArray[UndefOr[String]])./:(z)(op)
(execResult: IterableOps[UndefOr[String]])./:(z)(op)
(execResult: ArrayOps[UndefOr[String]]).:\(z)(op)
(execResult: WrappedArray[UndefOr[String]]).:\(z)(op)
(execResult: IterableOps[UndefOr[String]]).:\(z)(op)
(execResult: ArrayOps[UndefOr[String]]).addString(b)
(execResult: ArrayOps[UndefOr[String]]).addString(b, sep)
(execResult: ArrayOps[UndefOr[String]]).addString(b, start, sep, end)
(execResult: WrappedArray[UndefOr[String]]).addString(b)
(execResult: WrappedArray[UndefOr[String]]).addString(b, sep)
(execResult: WrappedArray[UndefOr[String]]).addString(b, start, sep, end)
(execResult: IterableOps[UndefOr[String]]).addString(b)
(execResult: IterableOps[UndefOr[String]]).addString(b, sep)
(execResult: IterableOps[UndefOr[String]]).addString(b, start, sep, end)
(execResult: ArrayOps[UndefOr[String]]).aggregate(z)(seqop, combop)
(execResult: WrappedArray[UndefOr[String]]).aggregate(z)(seqop, combop)
(execResult: IterableOps[UndefOr[String]]).aggregate(z)(seqop, combop)
(execResult: ArrayOps[UndefOr[String]]).apply(index)
Access the element at the given index.
Access the element at the given index.
(execResult: Array[B]).apply(index)
(execResult: WrappedArray[UndefOr[String]]).apply(index)
(execResult: ArrayOps[UndefOr[String]]).canEqual(that)
(execResult: WrappedArray[UndefOr[String]]).canEqual(that)
(execResult: IterableOps[UndefOr[String]]).canEqual(that)
(execResult: ArrayOps[UndefOr[String]]).clear()
(execResult: WrappedArray[UndefOr[String]]).clear()
(execResult: WrappedArray[UndefOr[String]]).clone()
(execResult: WrappedArray[UndefOr[String]]).collect(pf)(bf)
(execResult: IterableOps[UndefOr[String]]).collect(pf)(bf)
(execResult: ArrayOps[UndefOr[String]]).collectFirst(pf)
(execResult: WrappedArray[UndefOr[String]]).collectFirst(pf)
(execResult: IterableOps[UndefOr[String]]).collectFirst(pf)
(execResult: ArrayOps[UndefOr[String]]).combinations(n)
(execResult: WrappedArray[UndefOr[String]]).combinations(n)
(execResult: WrappedArray[UndefOr[String]]).companion
(execResult: IterableOps[UndefOr[String]]).companion
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
(execResult: Array[B]).concat(items)
(execResult: ArrayOps[UndefOr[String]]).containsSlice(that)
(execResult: WrappedArray[UndefOr[String]]).containsSlice(that)
(execResult: ArrayOps[UndefOr[String]]).corresponds(that)(p)
(execResult: WrappedArray[UndefOr[String]]).corresponds(that)(p)
(execResult: ArrayOps[UndefOr[String]]).count(p)
(execResult: WrappedArray[UndefOr[String]]).count(p)
(execResult: IterableOps[UndefOr[String]]).count(p)
(execResult: ArrayOps[UndefOr[String]]).deep
(execResult: WrappedArray[UndefOr[String]]).deep
(execResult: ArrayOps[UndefOr[String]]).distinct
(execResult: WrappedArray[UndefOr[String]]).distinct
(execResult: ArrayOps[UndefOr[String]]).drop(n)
(execResult: WrappedArray[UndefOr[String]]).drop(n)
(execResult: IterableOps[UndefOr[String]]).drop(n)
(execResult: ArrayOps[UndefOr[String]]).dropRight(n)
(execResult: WrappedArray[UndefOr[String]]).dropRight(n)
(execResult: IterableOps[UndefOr[String]]).dropRight(n)
(execResult: ArrayOps[UndefOr[String]]).dropWhile(p)
(execResult: WrappedArray[UndefOr[String]]).dropWhile(p)
(execResult: IterableOps[UndefOr[String]]).dropWhile(p)
(execResult: ArrayOps[UndefOr[String]]).endsWith(that)
(execResult: WrappedArray[UndefOr[String]]).endsWith(that)
(execResult: ArrayOps[UndefOr[String]]).equals(that)
(execResult: WrappedArray[UndefOr[String]]).equals(that)
(execResult: ArrayOps[UndefOr[String]]).exists(p)
(execResult: WrappedArray[UndefOr[String]]).exists(p)
(execResult: IterableOps[UndefOr[String]]).exists(p)
(execResult: ArrayOps[UndefOr[String]]).filter(p)
(execResult: WrappedArray[UndefOr[String]]).filter(p)
(execResult: IterableOps[UndefOr[String]]).filter(p)
(execResult: ArrayOps[UndefOr[String]]).filterNot(p)
(execResult: WrappedArray[UndefOr[String]]).filterNot(p)
(execResult: IterableOps[UndefOr[String]]).filterNot(p)
(execResult: ArrayOps[UndefOr[String]]).find(p)
(execResult: WrappedArray[UndefOr[String]]).find(p)
(execResult: IterableOps[UndefOr[String]]).find(p)
(execResult: WrappedArray[UndefOr[String]]).flatMap(f)(bf)
(execResult: IterableOps[UndefOr[String]]).flatMap(f)(bf)
(execResult: WrappedArray[UndefOr[String]]).flatten(asTraversable)
(execResult: IterableOps[UndefOr[String]]).flatten(asTraversable)
(execResult: ArrayOps[UndefOr[String]]).foldLeft(z)(op)
(execResult: WrappedArray[UndefOr[String]]).foldLeft(z)(op)
(execResult: ArrayOps[UndefOr[String]]).foldRight(z)(op)
(execResult: WrappedArray[UndefOr[String]]).foldRight(z)(op)
(execResult: ArrayOps[UndefOr[String]]).forall(p)
(execResult: WrappedArray[UndefOr[String]]).forall(p)
(execResult: IterableOps[UndefOr[String]]).forall(p)
(execResult: ArrayOps[UndefOr[String]]).foreach(f)
(execResult: WrappedArray[UndefOr[String]]).foreach(f)
(execResult: WrappedArray[UndefOr[String]]).genericBuilder
(execResult: IterableOps[UndefOr[String]]).genericBuilder
(execResult: ArrayOps[UndefOr[String]]).groupBy(f)
(execResult: WrappedArray[UndefOr[String]]).groupBy(f)
(execResult: IterableOps[UndefOr[String]]).groupBy(f)
(execResult: ArrayOps[UndefOr[String]]).grouped(size)
(execResult: WrappedArray[UndefOr[String]]).grouped(size)
(execResult: IterableOps[UndefOr[String]]).grouped(size)
(execResult: ArrayOps[UndefOr[String]]).hasDefiniteSize
(execResult: WrappedArray[UndefOr[String]]).hasDefiniteSize
(execResult: IterableOps[UndefOr[String]]).hasDefiniteSize
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
(execResult: Array[B]).hasOwnProperty(v)
(execResult: ArrayOps[UndefOr[String]]).hashCode()
(execResult: WrappedArray[UndefOr[String]]).hashCode()
(execResult: ArrayOps[UndefOr[String]]).head
(execResult: WrappedArray[UndefOr[String]]).head
(execResult: IterableOps[UndefOr[String]]).head
(execResult: ArrayOps[UndefOr[String]]).headOption
(execResult: WrappedArray[UndefOr[String]]).headOption
(execResult: IterableOps[UndefOr[String]]).headOption
(execResult: ArrayOps[UndefOr[String]]).indexWhere(p, from)
(execResult: ArrayOps[UndefOr[String]]).indexWhere(p)
(execResult: WrappedArray[UndefOr[String]]).indexWhere(p, from)
(execResult: WrappedArray[UndefOr[String]]).indexWhere(p)
(execResult: ArrayOps[UndefOr[String]]).indices
(execResult: WrappedArray[UndefOr[String]]).indices
(execResult: ArrayOps[UndefOr[String]]).init
(execResult: WrappedArray[UndefOr[String]]).init
(execResult: IterableOps[UndefOr[String]]).init
(execResult: ArrayOps[UndefOr[String]]).inits
(execResult: WrappedArray[UndefOr[String]]).inits
(execResult: IterableOps[UndefOr[String]]).inits
(execResult: ArrayOps[UndefOr[String]]).isDefinedAt(idx)
(execResult: WrappedArray[UndefOr[String]]).isDefinedAt(idx)
(execResult: ArrayOps[UndefOr[String]]).isEmpty
(execResult: WrappedArray[UndefOr[String]]).isEmpty
(execResult: IterableOps[UndefOr[String]]).isEmpty
Tests whether this object is in the prototype chain of another object.
Tests whether this object is in the prototype chain of another object.
(execResult: Array[B]).isPrototypeOf(v)
(execResult: ArrayOps[UndefOr[String]]).isTraversableAgain
(execResult: WrappedArray[UndefOr[String]]).isTraversableAgain
(execResult: IterableOps[UndefOr[String]]).isTraversableAgain
(execResult: ArrayOps[UndefOr[String]]).iterator
(execResult: WrappedArray[UndefOr[String]]).iterator
(execResult: IterableOps[UndefOr[String]]).iterator
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.
(execResult: Array[B]).join(seperator)
ECMAScript 6 JavaScript Iterator for this Array.
ECMAScript 6 JavaScript Iterator for this Array.
(execResult: Array[B]).jsIterator()
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
(execResult: Array[B]).jsSlice(start, end)
(execResult: ArrayOps[UndefOr[String]]).last
(execResult: WrappedArray[UndefOr[String]]).last
(execResult: IterableOps[UndefOr[String]]).last
(execResult: ArrayOps[UndefOr[String]]).lastIndexWhere(p, end)
(execResult: ArrayOps[UndefOr[String]]).lastIndexWhere(p)
(execResult: WrappedArray[UndefOr[String]]).lastIndexWhere(p, end)
(execResult: WrappedArray[UndefOr[String]]).lastIndexWhere(p)
(execResult: ArrayOps[UndefOr[String]]).lastOption
(execResult: WrappedArray[UndefOr[String]]).lastOption
(execResult: IterableOps[UndefOr[String]]).lastOption
(execResult: ArrayOps[UndefOr[String]]).length
Length of the array.
Length of the array.
(execResult: Array[B]).length
(execResult: WrappedArray[UndefOr[String]]).length
(execResult: ArrayOps[UndefOr[String]]).lengthCompare(len)
(execResult: WrappedArray[UndefOr[String]]).lengthCompare(len)
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.
(execResult: Array[B]).length_=(v)
(execResult: WrappedArray[UndefOr[String]]).map(f)(bf)
(execResult: IterableOps[UndefOr[String]]).map(f)(bf)
(execResult: ArrayOps[UndefOr[String]]).maxBy(f)(cmp)
(execResult: WrappedArray[UndefOr[String]]).maxBy(f)(cmp)
(execResult: IterableOps[UndefOr[String]]).maxBy(f)(cmp)
(execResult: ArrayOps[UndefOr[String]]).minBy(f)(cmp)
(execResult: WrappedArray[UndefOr[String]]).minBy(f)(cmp)
(execResult: IterableOps[UndefOr[String]]).minBy(f)(cmp)
(execResult: ArrayOps[UndefOr[String]]).mkString
(execResult: ArrayOps[UndefOr[String]]).mkString(sep)
(execResult: ArrayOps[UndefOr[String]]).mkString(start, sep, end)
(execResult: WrappedArray[UndefOr[String]]).mkString
(execResult: WrappedArray[UndefOr[String]]).mkString(sep)
(execResult: WrappedArray[UndefOr[String]]).mkString(start, sep, end)
(execResult: IterableOps[UndefOr[String]]).mkString
(execResult: IterableOps[UndefOr[String]]).mkString(sep)
(execResult: IterableOps[UndefOr[String]]).mkString(start, sep, end)
(execResult: ArrayOps[UndefOr[String]]).nonEmpty
(execResult: WrappedArray[UndefOr[String]]).nonEmpty
(execResult: IterableOps[UndefOr[String]]).nonEmpty
(execResult: ArrayOps[UndefOr[String]]).par
(execResult: WrappedArray[UndefOr[String]]).par
(execResult: IterableOps[UndefOr[String]]).par
(execResult: ArrayOps[UndefOr[String]]).partition(p)
(execResult: WrappedArray[UndefOr[String]]).partition(p)
(execResult: IterableOps[UndefOr[String]]).partition(p)
(execResult: ArrayOps[UndefOr[String]]).permutations
(execResult: WrappedArray[UndefOr[String]]).permutations
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
(execResult: Array[B]).pop()
(execResult: ArrayOps[UndefOr[String]]).prefixLength(p)
(execResult: WrappedArray[UndefOr[String]]).prefixLength(p)
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
(execResult: Array[B]).propertyIsEnumerable(v)
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
(execResult: Array[B]).push(items)
(execResult: ArrayOps[UndefOr[String]]).repr
(execResult: WrappedArray[UndefOr[String]]).repr
(execResult: IterableOps[UndefOr[String]]).repr
(execResult: ArrayOps[UndefOr[String]]).result()
(execResult: WrappedArray[UndefOr[String]]).result()
(execResult: ArrayOps[UndefOr[String]]).reverse
(execResult: WrappedArray[UndefOr[String]]).reverse
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
(execResult: Array[B]).reverseInPlace()
(execResult: ArrayOps[UndefOr[String]]).reverseIterator
(execResult: WrappedArray[UndefOr[String]]).reverseIterator
(execResult: WrappedArray[UndefOr[String]]).scanLeft(z)(op)(bf)
(execResult: IterableOps[UndefOr[String]]).scanLeft(z)(op)(bf)
(execResult: WrappedArray[UndefOr[String]]).scanRight(z)(op)(bf)
(Changed in version 2.9.0) The behavior of scanRight
has changed. The previous behavior can be reproduced with scanRight.reverse.
(execResult: IterableOps[UndefOr[String]]).scanRight(z)(op)(bf)
(Changed in version 2.9.0) The behavior of scanRight
has changed. The previous behavior can be reproduced with scanRight.reverse.
(execResult: ArrayOps[UndefOr[String]]).segmentLength(p, from)
(execResult: WrappedArray[UndefOr[String]]).segmentLength(p, from)
(execResult: ArrayOps[UndefOr[String]]).seq
(execResult: WrappedArray[UndefOr[String]]).seq
(execResult: IterableOps[UndefOr[String]]).seq
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
(execResult: Array[B]).shift()
(execResult: ArrayOps[UndefOr[String]]).size
(execResult: WrappedArray[UndefOr[String]]).size
(execResult: IterableOps[UndefOr[String]]).size
(execResult: ArrayOps[UndefOr[String]]).sizeHint(coll, delta)
(execResult: ArrayOps[UndefOr[String]]).sizeHint(coll)
(execResult: ArrayOps[UndefOr[String]]).sizeHint(size)
(execResult: WrappedArray[UndefOr[String]]).sizeHint(coll, delta)
(execResult: WrappedArray[UndefOr[String]]).sizeHint(coll)
(execResult: WrappedArray[UndefOr[String]]).sizeHint(size)
(execResult: ArrayOps[UndefOr[String]]).sizeHintBounded(size, boundingColl)
(execResult: WrappedArray[UndefOr[String]]).sizeHintBounded(size, boundingColl)
(execResult: ArrayOps[UndefOr[String]]).slice(from, until)
(execResult: WrappedArray[UndefOr[String]]).slice(from, until)
(execResult: IterableOps[UndefOr[String]]).slice(from, until)
(execResult: ArrayOps[UndefOr[String]]).sliding(size, step)
(execResult: ArrayOps[UndefOr[String]]).sliding(size)
(execResult: WrappedArray[UndefOr[String]]).sliding(size, step)
(execResult: WrappedArray[UndefOr[String]]).sliding(size)
(execResult: IterableOps[UndefOr[String]]).sliding(size, step)
(execResult: IterableOps[UndefOr[String]]).sliding(size)
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
(execResult: Array[B]).sort(compareFn)
(execResult: ArrayOps[UndefOr[String]]).sortBy(f)(ord)
(execResult: WrappedArray[UndefOr[String]]).sortBy(f)(ord)
(execResult: ArrayOps[UndefOr[String]]).sortWith(lt)
(execResult: WrappedArray[UndefOr[String]]).sortWith(lt)
(execResult: ArrayOps[UndefOr[String]]).span(p)
(execResult: WrappedArray[UndefOr[String]]).span(p)
(execResult: IterableOps[UndefOr[String]]).span(p)
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 where to start changes
Number of elements to delete from index
Elements to insert at index
An array of the elements that were deleted
(execResult: Array[B]).splice(index, deleteCount, items)
(execResult: ArrayOps[UndefOr[String]]).splitAt(n)
(execResult: WrappedArray[UndefOr[String]]).splitAt(n)
(execResult: IterableOps[UndefOr[String]]).splitAt(n)
(execResult: ArrayOps[UndefOr[String]]).startsWith(that, offset)
(execResult: ArrayOps[UndefOr[String]]).startsWith(that)
(execResult: WrappedArray[UndefOr[String]]).startsWith(that, offset)
(execResult: WrappedArray[UndefOr[String]]).startsWith(that)
(execResult: ArrayOps[UndefOr[String]]).stringPrefix
(execResult: WrappedArray[UndefOr[String]]).stringPrefix
(execResult: IterableOps[UndefOr[String]]).stringPrefix
(execResult: ArrayOps[UndefOr[String]]).tail
(execResult: WrappedArray[UndefOr[String]]).tail
(execResult: IterableOps[UndefOr[String]]).tail
(execResult: ArrayOps[UndefOr[String]]).tails
(execResult: WrappedArray[UndefOr[String]]).tails
(execResult: IterableOps[UndefOr[String]]).tails
(execResult: ArrayOps[UndefOr[String]]).take(n)
(execResult: WrappedArray[UndefOr[String]]).take(n)
(execResult: IterableOps[UndefOr[String]]).take(n)
(execResult: ArrayOps[UndefOr[String]]).takeRight(n)
(execResult: WrappedArray[UndefOr[String]]).takeRight(n)
(execResult: IterableOps[UndefOr[String]]).takeRight(n)
(execResult: ArrayOps[UndefOr[String]]).takeWhile(p)
(execResult: WrappedArray[UndefOr[String]]).takeWhile(p)
(execResult: IterableOps[UndefOr[String]]).takeWhile(p)
(execResult: ArrayOps[UndefOr[String]]).to(cbf)
(execResult: WrappedArray[UndefOr[String]]).to(cbf)
(execResult: IterableOps[UndefOr[String]]).to(cbf)
(execResult: ArrayOps[UndefOr[String]]).toBuffer
(execResult: WrappedArray[UndefOr[String]]).toBuffer
(execResult: IterableOps[UndefOr[String]]).toBuffer
(execResult: ArrayOps[UndefOr[String]]).toIndexedSeq
(execResult: WrappedArray[UndefOr[String]]).toIndexedSeq
(execResult: IterableOps[UndefOr[String]]).toIndexedSeq
(execResult: ArrayOps[UndefOr[String]]).toIterable
(execResult: WrappedArray[UndefOr[String]]).toIterable
(execResult: IterableOps[UndefOr[String]]).toIterable
(execResult: ArrayOps[UndefOr[String]]).toIterator
(execResult: WrappedArray[UndefOr[String]]).toIterator
(execResult: IterableOps[UndefOr[String]]).toIterator
(execResult: ArrayOps[UndefOr[String]]).toList
(execResult: WrappedArray[UndefOr[String]]).toList
(execResult: IterableOps[UndefOr[String]]).toList
(execResult: Array[B]).toLocaleString()
(execResult: ArrayOps[UndefOr[String]]).toMap(ev)
(execResult: WrappedArray[UndefOr[String]]).toMap(ev)
(execResult: IterableOps[UndefOr[String]]).toMap(ev)
(execResult: ArrayOps[UndefOr[String]]).toSeq
(execResult: WrappedArray[UndefOr[String]]).toSeq
(execResult: IterableOps[UndefOr[String]]).toSeq
(execResult: ArrayOps[UndefOr[String]]).toSet
(execResult: WrappedArray[UndefOr[String]]).toSet
(execResult: IterableOps[UndefOr[String]]).toSet
(execResult: ArrayOps[UndefOr[String]]).toStream
(execResult: WrappedArray[UndefOr[String]]).toStream
(execResult: IterableOps[UndefOr[String]]).toStream
(execResult: ArrayOps[UndefOr[String]]).toString()
(execResult: WrappedArray[UndefOr[String]]).toString()
(execResult: IterableOps[UndefOr[String]]).toString()
(execResult: ArrayOps[UndefOr[String]]).toTraversable
(execResult: WrappedArray[UndefOr[String]]).toTraversable
(execResult: IterableOps[UndefOr[String]]).toTraversable
(execResult: ArrayOps[UndefOr[String]]).toVector
(execResult: WrappedArray[UndefOr[String]]).toVector
(execResult: IterableOps[UndefOr[String]]).toVector
(execResult: WrappedArray[UndefOr[String]]).transpose(asTraversable)
(Changed in version 2.9.0) transpose
throws an IllegalArgumentException
if collections are not uniformly sized.
(execResult: IterableOps[UndefOr[String]]).transpose(asTraversable)
(Changed in version 2.9.0) transpose
throws an IllegalArgumentException
if collections are not uniformly sized.
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
(execResult: Array[B]).unshift(items)
(execResult: WrappedArray[UndefOr[String]]).unzip(asPair)
(execResult: IterableOps[UndefOr[String]]).unzip(asPair)
(execResult: WrappedArray[UndefOr[String]]).unzip3(asTriple)
(execResult: IterableOps[UndefOr[String]]).unzip3(asTriple)
(execResult: ArrayOps[UndefOr[String]]).update(index, element)
Set the element at the given index.
Set the element at the given index.
(execResult: Array[B]).update(index, value)
(execResult: WrappedArray[UndefOr[String]]).update(index, elem)
(execResult: Array[B]).valueOf()
(execResult: ArrayOps[UndefOr[String]]).view(from, until)
(execResult: ArrayOps[UndefOr[String]]).view
(execResult: WrappedArray[UndefOr[String]]).view(from, until)
(execResult: WrappedArray[UndefOr[String]]).view
(execResult: IterableOps[UndefOr[String]]).view(from, until)
(execResult: IterableOps[UndefOr[String]]).view
(execResult: ArrayOps[UndefOr[String]]).withFilter(p)
(execResult: WrappedArray[UndefOr[String]]).withFilter(p)
(execResult: IterableOps[UndefOr[String]]).withFilter(p)
(Since version 2.11.0) Scripting is deprecated.
(Since version 2.11.0) The returned sequence changes as this buffer is mutated. For an immutable copy, use, e.g., toList.