scala.collection.mutable

ListBuffer

class ListBuffer[A] extends Buffer[A] with GenericTraversableTemplate[A, ListBuffer[A][A]] with BufferLike[A, ListBuffer[A]] with Builder[A, List[A]] with SeqForwarder[A]

A Buffer implementation back up by a list. It provides constant time prepend and append. Most other operations are linear.

attributes: final

Inherits

  1. SeqForwarder
  2. IterableForwarder
  3. TraversableForwarder
  4. Builder
  5. Buffer
  6. BufferLike
  7. Cloneable
  8. Subtractable
  9. Addable
  10. Scriptable
  11. Shrinkable
  12. Growable
  13. Seq
  14. Seq
  15. SeqLike
  16. PartialFunction
  17. Function1
  18. Iterable
  19. Iterable
  20. IterableLike
  21. Equals
  22. Traversable
  23. Mutable
  24. Traversable
  25. GenericTraversableTemplate
  26. TraversableLike
  27. HasNewBuilder
  28. AnyRef
  29. Any

Type Members

  1. class WithFilter extends AnyRef

    A class supporting filtered operations

Value Members

  1. def +(elem1: A, elem2: A, elems: A*): ListBuffer[A]

    Adds two or more elements to this collection and returns the collection itself

    Adds two or more elements to this collection and returns the collection itself.

    elem1

    the first element to add.

    elem2

    the second element to add.

    elems

    the remaining elements to add.

    returns

    a new buffer with the given elements added.

    definition classes: BufferLikeAddable
  2. def +(elem: A): ListBuffer[A]

    Adds a single element to this collection and returns the collection itself

    Adds a single element to this collection and returns the collection itself.

    elem

    the element to add.

    returns

    a fresh collection with elem added.

    definition classes: BufferLikeAddable
  3. def ++(iter: Iterator[A]): ListBuffer[A]

    Adds a number of elements provided by an iterator and returns the collection itself

    Adds a number of elements provided by an iterator and returns the collection itself.

    iter

    the iterator

    returns

    a new buffer with the given elements added.

    definition classes: BufferLikeAddable
  4. def ++(iter: Traversable[A]): ListBuffer[A]

    Adds a number of elements provided by a traversable object and returns either the collection itself

    Adds a number of elements provided by a traversable object and returns either the collection itself.

    iter

    the iterable object.

    returns

    a new buffer with the given elements added.

    definition classes: BufferLikeAddable
  5. def ++[B >: A, That](that: Iterator[B])(bf: CanBuildFrom[ListBuffer[A], B, That]): That

    Concatenates this buffer with the elements of an iterator

    Concatenates this buffer with the elements of an iterator.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the iterator to append.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this buffer followed by all elements of that.

    definition classes: TraversableLike
  6. def ++[B >: A, That](that: Traversable[B])(bf: CanBuildFrom[ListBuffer[A], B, That]): That

    Concatenates this buffer with the elements of a traversable collection

    Concatenates this buffer with the elements of a traversable collection.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the traversable to append.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this buffer followed by all elements of that.

    definition classes: TraversableLike
  7. def ++=(src: Array[A], start: Int, len: Int): Unit

    Adds a number of elements in an array

    Adds a number of elements in an array

    src

    the array

    start

    the first element to append

    len

    the number of elements to append

    definition classes: BufferLike
  8. def ++=(elems: Traversable[A]): Growable[A]

    Appends all elements contained in a traversable collection to this buffer

    Appends all elements contained in a traversable collection to this buffer.

    elems

    the collection containing the elements to append.

    returns

    the buffer itself.

    definition classes: Growable
  9. def ++=(iter: Iterator[A]): Growable[A]

    Appends all elements produced by an iterator to this buffer

    Appends all elements produced by an iterator to this buffer.

    iter

    the iterator producing the elements to append.

    returns

    the buffer itself.

    definition classes: Growable
  10. def ++=:(iter: Iterator[A]): ListBuffer[A]

    Prepends the elements produced by an iterator to this buffer

    Prepends the elements produced by an iterator to this buffer.

    iter

    the iterator producing the elements to prepend.

    returns

    the buffer itself.

    definition classes: BufferLike
  11. def ++=:(elems: Traversable[A]): ListBuffer[A]

    Prepends the elements contained in a traversable collection to this buffer

    Prepends the elements contained in a traversable collection to this buffer.

    elems

    the collection containing the elements to prepend.

    returns

    the buffer itself.

    definition classes: BufferLike
  12. def +:[B >: A, That](elem: B)(bf: CanBuildFrom[ListBuffer[A], B, That]): That

    Prepends an element to this buffer

    Prepends an element to this buffer

    B

    the element type of the returned buffer.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    elem

    the prepended element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That consisting of elem followed by all elements of this buffer.

    definition classes: SeqLike
  13. def +=(x: A): ListBuffer[A]

    Appends a single element to this buffer

    Appends a single element to this buffer. This operation takes constant time.

    x

    the element to append.

    returns

    the builder itself.

  14. def +=(elem1: A, elem2: A, elems: A*): Growable[A]

    Appends two or more elements to this buffer

    Appends two or more elements to this buffer.

    elem1

    the first element to append.

    elem2

    the second element to append.

    elems

    the remaining elements to append.

    returns

    the buffer itself

    definition classes: Growable
  15. def +=:(x: A): ListBuffer[A]

    Prepends a single element to this buffer

    Prepends a single element to this buffer. This operation takes constant time.

    x

    the element to prepend.

    returns

    this buffer.

  16. def -(elem1: A, elem2: A, elems: A*): ListBuffer[A]

    Removes two or more elements from this collection and returns the collection itself

    Removes two or more elements from this collection and returns the collection itself.

    elem1

    the first element to remove.

    elem2

    the second element to remove.

    elems

    the remaining elements to remove.

    returns

    a new buffer that contains all elements of the current buffer except one less occurrence of each of the given elements.

    definition classes: BufferLikeSubtractable
  17. def -(elem: A): ListBuffer[A]

    Removes a single element from this collection and returns the collection itself

    Removes a single element from this collection and returns the collection itself.

    elem

    the element to remove.

    returns

    a new collection that contains all elements of the current buffer except one less occurrence of elem.

    definition classes: BufferLikeSubtractable
  18. def --(iter: Iterator[A]): ListBuffer[A]

    Removes a number of elements provided by an iterator and returns the collection itself

    Removes a number of elements provided by an iterator and returns the collection itself.

    iter

    the iterator

    returns

    a new buffer that contains all elements of the current buffer except one less occurrence of each of the elements produced by iter.

    definition classes: BufferLikeSubtractable
  19. def --(iter: Traversable[A]): ListBuffer[A]

    Removes a number of elements provided by a Traversable object and returns the collection itself

    Removes a number of elements provided by a Traversable object and returns the collection itself.

    iter

    the Traversable object.

    returns

    a new buffer that contains all elements of the current buffer except one less occurrence of each of the elements of elems.

    definition classes: BufferLikeSubtractable
  20. def --=(iter: Traversable[A]): Shrinkable[A]

    Removes all elements contained in a traversable collection from this buffer

    Removes all elements contained in a traversable collection from this buffer.

    iter

    the collection containing the elements to remove.

    returns

    the buffer itself

    definition classes: Shrinkable
  21. def --=(iter: Iterator[A]): Shrinkable[A]

    Removes all elements produced by an iterator from this buffer

    Removes all elements produced by an iterator from this buffer.

    iter

    the iterator producing the elements to remove.

    returns

    the buffer itself

    definition classes: Shrinkable
  22. def -=(elem: A): ListBuffer[A]

    Remove a single element from this buffer

    Remove a single element from this buffer. May take time linear in the buffer size.

  23. def -=(elem1: A, elem2: A, elems: A*): Shrinkable[A]

    Removes two or more elements from this buffer

    Removes two or more elements from this buffer.

    elem1

    the first element to remove.

    elem2

    the second element to remove.

    elems

    the remaining elements to remove.

    returns

    the buffer itself

    definition classes: Shrinkable
  24. def /:[B](z: B)(op: (B, A) ⇒ B): B

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

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

    Note: /: is alternate syntax for foldLeft; z /: xs is the same as xs foldLeft z.

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this buffer$, going left to right with the start value z on the left: {{{ op(...op(op(z, x1), x2), ..., xn) }}} where x,,1,,, ..., x,,n,, are the elements of this buffer.

    definition classes: TraversableLike
  25. def :+[B >: A, That](elem: B)(bf: CanBuildFrom[ListBuffer[A], B, That]): That

    Appends an element to this buffer

    Appends an element to this buffer

    B

    the element type of the returned buffer.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    elem

    the appended element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That consisting of all elements of this buffer followed by elem.

    definition classes: SeqLike
  26. def :\[B](z: B)(op: (A, B) ⇒ B): B

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

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

    Note: :\ is alternate syntax for foldRight; xs :\ z is the same as xs foldRight z.

    B

    the result type of the binary operator.

    z

    the start value

    op

    the binary operator

    returns

    the result of inserting op between consecutive elements of this buffer$, going right to left with the start value z on the right: {{{ op(x1, op(x2, ... op(xn, z)...)) }}} where x,,1,,, ..., x,,n,, are the elements of this buffer.

    definition classes: TraversableLike
  27. def <<(cmd: Message[A]): Unit

    Send a message to this scriptable object

    Send a message to this scriptable object.

    cmd

    the message to send.

    definition classes: BufferLikeScriptable
  28. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Appends all elements of this buffer to a string builder using start, end, and separator strings

    Appends all elements of this buffer to a string builder using start, end, and separator strings. The written text begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this buffer are separated by the string sep.

    b

    the string builder to which elements are appended.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    the string builder b to which elements were appended.

    definition classes: TraversableForwarderTraversableLike
  29. def addString(b: StringBuilder): StringBuilder

    Appends all elements of this buffer to a string builder

    Appends all elements of this buffer to a string builder. The written text consists of the string representations (w.r.t. the method toString) of all elements of this buffer without any separator string.

    b

    the string builder to which elements are appended.

    returns

    the string builder b to which elements were appended.

    definition classes: TraversableLike
  30. def addString(b: StringBuilder, sep: String): StringBuilder

    Appends all elements of this buffer to a string builder using a separator string

    Appends all elements of this buffer to a string builder using a separator string. The written text consists of the string representations (w.r.t. the method toString) of all elements of this buffer, separated by the string sep.

    b

    the string builder to which elements are appended.

    sep

    the separator string.

    returns

    the string builder b to which elements were appended.

    definition classes: TraversableLike
  31. def andThen[C](k: (A) ⇒ C): PartialFunction[Int, C]

    Composes this partial function with a transformation function that gets applied to results of this partial function

    Composes this partial function with a transformation function that gets applied to results of this partial function.

    C

    the result type of the transformation function.

    k

    the transformation function

    returns

    a partial function with the same domain as this partial function, which maps arguments x to k(this(x)).

    definition classes: PartialFunctionFunction1
  32. def append(elems: A*): Unit

    Appends the given elements to this buffer

    Appends the given elements to this buffer.

    elems

    the elements to append.

    definition classes: BufferLike
  33. def appendAll(iter: Iterator[A]): Unit

    Appends the elements produced by an iterator to this buffer

    Appends the elements produced by an iterator to this buffer.

    definition classes: BufferLike
  34. def appendAll(elems: Traversable[A]): Unit

    Appends the elements contained in a traversable collection to this buffer

    Appends the elements contained in a traversable collection to this buffer.

    elems

    the collection containing the elements to append.

    definition classes: BufferLike
  35. def apply(n: Int): A

    Selects an element by its index in the buffer

    Selects an element by its index in the buffer.

  36. def canEqual(that: Any): Boolean

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind

    Method called from equality methods, so that user-defined subclasses can refuse to be equal to other collections of the same kind.

    that

    The object with which this buffer should be compared

    returns

    true, if this buffer can possibly equal that, false otherwise. The test takes into consideration only the run-time types of objects but ignores their elements.

    definition classes: IterableLikeEquals
  37. def clear(): Unit

    Clears the buffer contents

    Clears the buffer contents.

  38. def clone(): ListBuffer[A]

    Returns a clone of this buffer

    Returns a clone of this buffer.

  39. def companion: GenericCompanion[ListBuffer[A][A]]

    The factory companion object that builds instances of class Buffer

    The factory companion object that builds instances of class Buffer.

  40. def compose[A](g: (A) ⇒ Int): (A) ⇒ A

    (f compose g)(x) == f(g(x))

    (f compose g)(x) == f(g(x))

    definition classes: Function1
  41. def contains(elem: Any): Boolean

    Tests whether this buffer contains a given value as an element

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

    elem

    the element to test.

    returns

    true if this buffer has an element that is is equal (wrt ==) to elem, false otherwise.

    definition classes: SeqForwarderSeqLike
  42. def containsSlice[B](that: Seq[B]): Boolean

    Tests whether this buffer contains a given sequence as a slice

    Tests whether this buffer contains a given sequence as a slice.

    that

    the sequence to test

    returns

    true if this buffer contains a slice with the same elements as that, otherwise false.

    definition classes: SeqLike
  43. def copyToArray[B >: A](xs: Array[B], start: Int, len: Int): Unit

    Copies elements of this buffer to an array

    Copies elements of this buffer to an array. Fills the given array xs with at most len elements of this buffer, starting at position start. Copying will stop once either the end of the current buffer is reached, or the end of the array is reached, or len elements have been copied.

    B

    the type of the elements of the array.

    xs

    the array to fill.

    start

    the starting index.

    len

    the maximal number of elements to copy.

    definition classes: TraversableForwarderTraversableLike
  44. def copyToArray[B >: A](xs: Array[B]): Unit

    Copies elements of this buffer to an array

    Copies elements of this buffer to an array. Fills the given array xs with all elements of this buffer, starting at position 0. Copying will stop once either the end of the current buffer is reached, or the end of the array is reached.

    B

    the type of the elements of the array.

    xs

    the array to fill.

    definition classes: TraversableLike
  45. def copyToArray[B >: A](xs: Array[B], start: Int): Unit

    Copies elements of this buffer to an array

    Copies elements of this buffer to an array. Fills the given array xs with all elements of this buffer, starting at position start. Copying will stop once either the end of the current buffer is reached, or the end of the array is reached.

    B

    the type of the elements of the array.

    xs

    the array to fill.

    start

    the starting index.

    definition classes: TraversableLike
  46. def copyToBuffer[B >: A](dest: Buffer[B]): Unit

    Copies all elements of this buffer to a buffer

    Copies all elements of this buffer to a buffer.

    dest

    The buffer to which elements are copied.

    definition classes: TraversableForwarderTraversableLike
  47. def corresponds[B](that: Seq[B])(p: (A, B) ⇒ Boolean): Boolean

    Tests whether every element of this buffer relates to the corresponding element of another sequence by satisfying a test predicate

    Tests whether every element of this buffer relates to the corresponding element of another sequence by satisfying a test predicate.

    B

    the type of the elements of that

    that

    the other sequence

    p

    the test predicate, which relates elements from both sequences

    returns

    true if both sequences have the same length and p(x, y) is true for all corresponding elements x of this buffer and y of that, otherwise false.

    definition classes: SeqLike
  48. def count(p: (A) ⇒ Boolean): Int

    Counts the number of elements in the buffer which satisfy a predicate

    Counts the number of elements in the buffer which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    the number of elements satisfying the predicate p.

    definition classes: TraversableForwarderTraversableLike
  49. def diff[B >: A, That](that: Seq[B]): ListBuffer[A]

    Computes the multiset difference between this buffer and another sequence

    Computes the multiset difference between this buffer and another sequence.

    B

    the element type of the returned buffer.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the sequence of elements to remove

    returns

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

    definition classes: SeqLike
  50. def drop(n: Int): ListBuffer[A]

    Selects all elements except first n ones

    Selects all elements except first n ones.

    n

    the number of elements to drop from this buffer.

    returns

    a buffer consisting of all elements of this buffer except the first n ones, or else the empty buffer, if this buffer has less than n elements.

    definition classes: TraversableLike
  51. def dropRight(n: Int): ListBuffer[A]

    Selects all elements except first n ones

    Selects all elements except first n ones.

    n

    The number of elements to take

    returns

    a buffer consisting of all elements of this buffer except the first n ones, or else the empty buffer, if this buffer has less than n elements.

    definition classes: IterableLike
  52. def dropWhile(p: (A) ⇒ Boolean): ListBuffer[A]

    Drops longest prefix of elements that satisfy a predicate

    Drops longest prefix of elements that satisfy a predicate.

    p

    The predicate used to test elements.

    returns

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

    definition classes: TraversableLike
  53. def elements: Iterator[A]

  54. def endsWith[B](that: Seq[B]): Boolean

    Tests whether this buffer ends with the given sequence

    Tests whether this buffer ends with the given sequence.

    that

    the sequence to test

    returns

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

    definition classes: SeqForwarderSeqLike
  55. def equals(that: Any): Boolean

    The equality method defined in AnyRef

    The equality method defined in AnyRef.

  56. def equalsWith[B](that: Seq[B])(f: (A, B) ⇒ Boolean): Boolean

    Tests whether every element of this buffer relates to the corresponding element of another sequence by satisfying a test predicate

    Tests whether every element of this buffer relates to the corresponding element of another sequence by satisfying a test predicate.

    B

    the type of the elements of that

    that

    the other sequence

    returns

    true if both sequences have the same length and p(x, y) is true for all corresponding elements x of this buffer and y of that, otherwise false.

    definition classes: SeqLike
  57. def exists(p: (A) ⇒ Boolean): Boolean

    Tests whether a predicate holds for some of the elements of this buffer

    Tests whether a predicate holds for some of the elements of this buffer.

    p

    the predicate used to test elements.

    returns

    true if the given predicate p holds for some of the elements of this buffer, otherwise false.

    definition classes: TraversableForwarderTraversableLike
  58. def filter(p: (A) ⇒ Boolean): ListBuffer[A]

    Selects all elements of this buffer which satisfy a predicate

    Selects all elements of this buffer which satisfy a predicate.

    p

    the predicate used to test elements.

    returns

    a new buffer consisting of all elements of this buffer that satisfy the given predicate p. The order of the elements is preserved.

    definition classes: TraversableLike
  59. def filterNot(p: (A) ⇒ Boolean): ListBuffer[A]

    Selects all elements of this buffer which do not satisfy a predicate

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

    p

    the predicate used to test elements.

    returns

    a new buffer consisting of all elements of this buffer that do not satisfy the given predicate p. The order of the elements is preserved.

    definition classes: TraversableLike
  60. def find(p: (A) ⇒ Boolean): Option[A]

    Finds the first element of the buffer satisfying a predicate, if any

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

    p

    the predicate used to test elements.

    returns

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

    definition classes: TraversableForwarderTraversableLike
  61. def findIndexOf(p: (A) ⇒ Boolean): Int

    Returns index of the first element satisying a predicate, or -1

    Returns index of the first element satisying a predicate, or -1.

    definition classes: SeqLike
  62. def findLastIndexOf(p: (A) ⇒ Boolean): Int

    Returns index of the last element satisying a predicate, or -1

    Returns index of the last element satisying a predicate, or -1.

    definition classes: SeqLike
  63. def first: A

  64. def firstOption: Option[A]

    None if iterable is empty

    None if iterable is empty.

    definition classes: IterableLike
  65. def flatMap[B, That](f: (A) ⇒ Traversable[B])(bf: CanBuildFrom[ListBuffer[A], B, That]): That

    Builds a new collection by applying a function to all elements of this buffer and concatenating the results

    Builds a new collection by applying a function to all elements of this buffer and concatenating the results.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    f

    the function to apply to each element.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

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

    definition classes: TraversableLike
  66. def flatten[B](asTraversable: (A) ⇒ Traversable[B]): ListBuffer[B]

    Converts this buffer of traversable collections into a buffer in which all element collections are concatenated

    Converts this buffer of traversable collections into a buffer in which all element collections are concatenated.

    B

    the type of the elements of each traversable collection.

    asTraversable

    an implicit conversion which asserts that the element type of this buffer is a Traversable.

    returns

    a new buffer resulting from concatenating all element buffers.

    definition classes: GenericTraversableTemplate
  67. def foldLeft[B](z: B)(op: (B, A) ⇒ B): B

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this buffer$, going left to right with the start value z on the left: {{{ op(...op(z, x1), x2, ..., xn) }}} where x,,1,,, ..., x,,n,, are the elements of this buffer.

    definition classes: TraversableForwarderTraversableLike
  68. def foldRight[B](z: B)(op: (A, B) ⇒ B): B

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

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

    B

    the result type of the binary operator.

    z

    the start value.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this buffer$, going right to left with the start value z on the right: {{{ op(x1, op(x2, ... op(xn, z)...)) }}} where x,,1,,, ..., x,,n,, are the elements of this buffer.

    definition classes: TraversableForwarderTraversableLike
  69. def forall(p: (A) ⇒ Boolean): Boolean

    Tests whether a predicate holds for all elements of this buffer

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

    p

    the predicate used to test elements.

    returns

    true if the given predicate p holds for all elements of this buffer, otherwise false.

    definition classes: TraversableForwarderTraversableLike
  70. def foreach[B](f: (A) ⇒ B): Unit

    Applies a function f to all elements of this buffer

    Applies a function f to all elements of this buffer.

    f

    the function that is applied for its side-effect to every element. The result of function f is discarded.

  71. def genericBuilder[B]: Builder[B, ListBuffer[B]]

    The generic builder that builds instances of Buffer at arbitrary element types

    The generic builder that builds instances of Buffer at arbitrary element types.

    definition classes: GenericTraversableTemplate
  72. def groupBy[K](f: (A) ⇒ K): Map[K, ListBuffer[A]]

    Partitions this buffer into a map of buffers according to some discriminator function

    Partitions this buffer into a map of buffers according to some discriminator function.

    Note: this method is not re-implemented by views. This means when applied to a view it will always force the view and return a new buffer.

    K

    the type of keys returned by the discriminator function.

    f

    the discriminator function.

    returns

    A map from keys to buffers such that the following invariant holds: {{{ (xs partition f)(k) = xs filter (x => f(x) == k) }}} That is, every key k is bound to a buffer of those elements x for which f(x) equals k.

    definition classes: TraversableLike
  73. def hasDefiniteSize: Boolean

    Tests whether this buffer is known to have a finite size

    Tests whether this buffer is known to have a finite size. All strict collections are known to have finite size. For a non-strict collection such as Stream, the predicate returns true if all elements have been computed. It returns false if the stream is not yet evaluated to the end.

    Note: many collection methods will not work on collections of infinite sizes.

    definition classes: TraversableForwarderTraversableLike
  74. def hashCode(): Int

    Hashcodes for Buffer produce a value from the hashcodes of all the elements of the buffer

    Hashcodes for Buffer produce a value from the hashcodes of all the elements of the buffer.

    definition classes: SeqLike ⇐ AnyRef ⇐ Any
  75. def head: A

    Selects the first element of this buffer

    Selects the first element of this buffer.

  76. def headOption: Option[A]

    Optionally selects the first element

    Optionally selects the first element.

    definition classes: TraversableLike
  77. def indexOf[B >: A](elem: B, from: Int): Int

    Finds index of first occurrence of some value in this buffer after or at some start index

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

    B

    the type of the element elem.

    elem

    the element value to search for.

    from

    the start index

    returns

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

    definition classes: SeqForwarderSeqLike
  78. def indexOf[B >: A](elem: B): Int

    Finds index of first occurrence of some value in this buffer

    Finds index of first occurrence of some value in this buffer.

    B

    the type of the element elem.

    elem

    the element value to search for.

    returns

    the index of the first element of this buffer that is equal (wrt ==) to elem, or -1, if none exists.

    definition classes: SeqLike
  79. def indexOfSlice[B >: A](that: Seq[B]): Int

    Finds first index where this buffer contains a given sequence as a slice

    Finds first index where this buffer contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the first index such that the elements of this buffer starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    definition classes: SeqForwarderSeqLike
  80. def indexOfSlice[B >: A](that: Seq[B], from: Int): Int

    Finds first index after or at a start index where this buffer contains a given sequence as a slice

    Finds first index after or at a start index where this buffer contains a given sequence as a slice.

    that

    the sequence to test

    from

    the start index

    returns

    the first index >= from such that the elements of this buffer starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    definition classes: SeqLike
  81. def indexWhere(p: (A) ⇒ Boolean, from: Int): Int

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

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

    p

    the predicate used to test elements.

    from

    the start index

    returns

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

    definition classes: SeqForwarderSeqLike
  82. def indexWhere(p: (A) ⇒ Boolean): Int

    Finds index of first element satisfying some predicate

    Finds index of first element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the first element of this buffer that satisfies the predicate p, or -1, if none exists.

    definition classes: SeqLike
  83. def indices: Range

    Produces the range of all indices of this sequence

    Produces the range of all indices of this sequence.

    definition classes: SeqForwarderSeqLike
  84. def init: ListBuffer[A]

    Selects all elements except the last

    Selects all elements except the last.

    definition classes: TraversableLike
  85. def insert(n: Int, elems: A*): Unit

    Inserts new elements at a given index into this buffer

    Inserts new elements at a given index into this buffer.

    n

    the index where new elements are inserted.

    elems

    the traversable collection containing the elements to insert.

    definition classes: BufferLike
  86. def insertAll(n: Int, seq: Traversable[A]): Unit

    Inserts new elements at the index n

    Inserts new elements at the index n. Opposed to method update, this method will not replace an element with a new one. Instead, it will insert a new element at index n.

    n

    the index where a new element will be inserted.

  87. def intersect[B >: A, That](that: Seq[B]): ListBuffer[A]

    Computes the multiset intersection between this buffer and another sequence

    Computes the multiset intersection between this buffer and another sequence.

    B

    the element type of the returned buffer.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the sequence of elements to intersect with.

    returns

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

    definition classes: SeqLike
  88. def isDefinedAt(x: Int): Boolean

    Tests whether this buffer contains given index

    Tests whether this buffer contains given index.

    The implementations of methods apply and isDefinedAt turn a Seq[A] into a PartialFunction[Int, A].

    definition classes: SeqForwarderSeqLikePartialFunction
  89. def isEmpty: Boolean

    Tests whether this buffer is empty

    Tests whether this buffer is empty.

  90. def iterator: Iterator[A]

    Creates a new iterator over all elements contained in this iterable object

    Creates a new iterator over all elements contained in this iterable object.

  91. def last: A

    Selects the last element

    Selects the last element.

    definition classes: TraversableForwarderTraversableLike
  92. def lastIndexOf[B >: A](elem: B, end: Int): Int

    Finds index of last occurrence of some value in this buffer before or at a given end index

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

    B

    the type of the element elem.

    elem

    the element value to search for.

    end

    the end index.

    returns

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

    definition classes: SeqLike
  93. def lastIndexOf[B >: A](elem: B): Int

    Finds index of last occurrence of some value in this buffer

    Finds index of last occurrence of some value in this buffer.

    B

    the type of the element elem.

    elem

    the element value to search for.

    returns

    the index of the last element of this buffer that is equal (wrt ==) to elem, or -1, if none exists.

    definition classes: SeqLike
  94. def lastIndexOfSlice[B >: A](that: Seq[B], end: Int): Int

    Finds last index before or at a given end index where this buffer contains a given sequence as a slice

    Finds last index before or at a given end index where this buffer contains a given sequence as a slice.

    that

    the sequence to test

    end

    the end idnex

    returns

    the last index <= end such that the elements of this buffer starting at this index match the elements of sequence that, or -1 of no such subsequence exists.

    definition classes: SeqLike
  95. def lastIndexOfSlice[B >: A](that: Seq[B]): Int

    Finds last index where this buffer contains a given sequence as a slice

    Finds last index where this buffer contains a given sequence as a slice.

    that

    the sequence to test

    returns

    the last index such that the elements of this buffer starting a this index match the elements of sequence that, or -1 of no such subsequence exists.

    definition classes: SeqLike
  96. def lastIndexWhere(p: (A) ⇒ Boolean, end: Int): Int

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

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

    p

    the predicate used to test elements.

    returns

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

    definition classes: SeqLike
  97. def lastIndexWhere(p: (A) ⇒ Boolean): Int

    Finds index of last element satisfying some predicate

    Finds index of last element satisfying some predicate.

    p

    the predicate used to test elements.

    returns

    the index of the last element of this buffer that satisfies the predicate p, or -1, if none exists.

    definition classes: SeqLike
  98. def lastOption: Option[A]

    Optionally selects the last element

    Optionally selects the last element.

    definition classes: TraversableForwarderTraversableLike
  99. def length: Int

    The current length of the buffer

    The current length of the buffer

  100. def lengthCompare(l: Int): Int

    Compares the length of this buffer to a test value

    Compares the length of this buffer to a test value.

    definition classes: SeqForwarderSeqLike
  101. def lift: (Int) ⇒ Option[A]

    Turns this partial function into an plain function returning an Option result

    Turns this partial function into an plain function returning an Option result.

    definition classes: PartialFunction
  102. def map[B, That](f: (A) ⇒ B)(bf: CanBuildFrom[ListBuffer[A], B, That]): That

    Builds a new collection by applying a function to all elements of this buffer

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

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    f

    the function to apply to each element.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That resulting from applying the given function f to each element of this buffer and collecting the results.

    definition classes: TraversableLike
  103. def mapResult[NewTo](f: (List[A]) ⇒ NewTo): Builder[A, NewTo]

    Creates a new builder by applying a transformation function to the results of this builder

    Creates a new builder by applying a transformation function to the results of this builder.

    NewTo

    the type of collection returned by f.

    f

    the transformation function.

    returns

    a new builder which is the same as the current builder except that a transformation function is applied to this builder's result.

    definition classes: Builder
  104. def max[B >: A](cmp: Ordering[B]): A

    Finds the largest element

    Finds the largest element.

    B

    The type over which the ordering is defined.

    cmp

    An ordering to be used for comparing elements.

    returns

    the largest element of this buffer with respect to the ordering cmp.

    definition classes: TraversableLike
  105. def min[B >: A](cmp: Ordering[B]): A

    Finds the smallest element

    Finds the smallest element.

    B

    The type over which the ordering is defined.

    cmp

    An ordering to be used for comparing elements.

    returns

    the smallest element of this buffer with respect to the ordering cmp.

    definition classes: TraversableLike
  106. def mkString(start: String, sep: String, end: String): String

    Displays all elements of this buffer in a string using start, end, and separator strings

    Displays all elements of this buffer in a string using start, end, and separator strings.

    start

    the starting string.

    sep

    the separator string.

    end

    the ending string.

    returns

    a string representation of this buffer. The resulting string begins with the string start and ends with the string end. Inside, the string representations (w.r.t. the method toString) of all elements of this buffer are separated by the string sep.

    definition classes: TraversableForwarderTraversableLike
  107. def mkString: String

    Displays all elements of this buffer in a string

    Displays all elements of this buffer in a string.

    definition classes: TraversableLike
  108. def mkString(sep: String): String

    Displays all elements of this buffer in a string using a separator string

    Displays all elements of this buffer in a string using a separator string.

    sep

    the separator string.

    returns

    a string representation of this buffer. In the resulting string the string representations (w.r.t. the method toString) of all elements of this buffer are separated by the string sep.

    definition classes: TraversableLike
  109. def nonEmpty: Boolean

    Tests whether the buffer is not empty

    Tests whether the buffer is not empty.

    definition classes: TraversableForwarderTraversableLike
  110. def orElse[A1 <: Int, B1 >: A](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

    Composes this partial function with a fallback partial function which gets applied where this partial function is not defined

    Composes this partial function with a fallback partial function which gets applied where this partial function is not defined.

    A1

    the argument type of the fallback function

    B1

    the result type of the fallback function

    that

    the fallback function

    returns

    a partial function which has as domain the union of the domains of this partial function and that. The resulting partial function takes x to this(x) where this is defined, and to that(x) where it is not.

    definition classes: PartialFunction
  111. def padTo[B >: A, That](len: Int, elem: B)(bf: CanBuildFrom[ListBuffer[A], B, That]): That

    Appends an element value to this buffer until a given target length is reached

    Appends an element value to this buffer until a given target length is reached.

    B

    the element type of the returned buffer.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    len

    the target length

    elem

    the padding value

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

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

    definition classes: SeqLike
  112. def partialMap[B, That](pf: PartialFunction[A, B])(bf: CanBuildFrom[ListBuffer[A], B, That]): That

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

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

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    pf

    the partial function which filters and maps the buffer.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

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

    definition classes: TraversableLike
  113. def partition(p: (A) ⇒ Boolean): (ListBuffer[A], ListBuffer[A])

    Partitions this buffer in two buffers according to a predicate

    Partitions this buffer in two buffers according to a predicate.

    p

    the predicate on which to partition.

    returns

    a pair of buffers: the first buffer consists of all elements that satisfy the predicate p and the second buffer consists of all elements that don't. The relative order of the elements in the resulting buffers is the same as in the original buffer.

    definition classes: TraversableLike
  114. def patch[B >: A, That](from: Int, patch: Seq[B], replaced: Int)(bf: CanBuildFrom[ListBuffer[A], B, That]): That

    Produces a new buffer where a slice of elements in this buffer is replaced by another sequence

    Produces a new buffer where a slice of elements in this buffer is replaced by another sequence.

    B

    the element type of the returned buffer.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    from

    the index of the first replaced element

    patch

    the replacement sequence

    replaced

    the number of elements to drop in the original buffer

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That consisting of all elements of this buffer except that replaced elements starting from from are replaced by patch.

    definition classes: SeqLike
  115. def prefixLength(p: (A) ⇒ Boolean): Int

    Returns the length of the longest prefix whose elements all satisfy some preficate

    Returns the length of the longest prefix whose elements all satisfy some preficate.

    p

    the predicate used to test elements.

    returns

    the length of the longest prefix of this buffer such that every element of the segment satisfies the predicate p.

    definition classes: SeqForwarderSeqLike
  116. def prepend(elems: A*): Unit

    Prepends given elements to this buffer

    Prepends given elements to this buffer.

    elems

    the elements to prepend.

    definition classes: BufferLike
  117. def prependAll(iter: Iterator[A]): Unit

    Prepends a number of elements produced by an iterator to this buffer

    Prepends a number of elements produced by an iterator to this buffer.

    iter

    the iterator producing the elements to prepend.

    definition classes: BufferLike
  118. def prependAll(iter: Traversable[A]): Unit

    Prepends the elements contained in a traversable collection to this buffer

    Prepends the elements contained in a traversable collection to this buffer.

    definition classes: BufferLike
  119. def prependToList(xs: List[A]): List[A]

    Prepends the elements of this buffer to a given list

    Prepends the elements of this buffer to a given list

    xs

    the list to which elements are prepended

  120. def product[B >: A](num: Numeric[B]): B

    Multiplies up the elements of this collection

    Multiplies up the elements of this collection.

    B

    the result type of the * operator.

    num

    an implicit parameter defining a set of numeric operations which includes the * operator to be used in forming the product.

    returns

    the product of all elements of this buffer with respect to the * operator in num.

    definition classes: TraversableLike
  121. def projection: SeqView[A, ListBuffer[A]]

    returns a projection that can be used to call non-strict filter, map, and flatMap methods that build projections of the collection

    returns a projection that can be used to call non-strict filter, map, and flatMap methods that build projections of the collection.

    definition classes: SeqLikeIterableLike
  122. def readOnly: List[A]

    expose the underlying list but do not mark it as exported @return A sequence which refers to this buffer for all its operations

    expose the underlying list but do not mark it as exported @return A sequence which refers to this buffer for all its operations.

  123. def reduceLeft[B >: A](op: (B, A) ⇒ B): B

    Applies a binary operator to all elements of this buffer, going left to right

    Applies a binary operator to all elements of this buffer, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this buffer$, going left to right: {{{ op(...(op(x1, x2), ... ) , xn) }}} where x,,1,,, ..., x,,n,, are the elements of this buffer.

    definition classes: TraversableForwarderTraversableLike
  124. def reduceLeftOption[B >: A](op: (B, A) ⇒ B): Option[B]

    Optionally applies a binary operator to all elements of this buffer, going left to right

    Optionally applies a binary operator to all elements of this buffer, going left to right.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceLeft(op) is this buffer is nonempty, None otherwise.

    definition classes: TraversableForwarderTraversableLike
  125. def reduceRight[B >: A](op: (A, B) ⇒ B): B

    Applies a binary operator to all elements of this buffer, going right to left

    Applies a binary operator to all elements of this buffer, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    the result of inserting op between consecutive elements of this buffer$, going right to left: {{{ op(x1, op(x2, ..., op(xn-1, xn)...)) }}} where x,,1,,, ..., x,,n,, are the elements of this buffer.

    definition classes: TraversableForwarderTraversableLike
  126. def reduceRightOption[B >: A](op: (A, B) ⇒ B): Option[B]

    Optionally applies a binary operator to all elements of this buffer, going right to left

    Optionally applies a binary operator to all elements of this buffer, going right to left.

    B

    the result type of the binary operator.

    op

    the binary operator.

    returns

    an option value containing the result of reduceRight(op) is this buffer is nonempty, None otherwise.

    definition classes: TraversableForwarderTraversableLike
  127. def remove(n: Int): A

    Removes the element on a given index position

    Removes the element on a given index position. May take time linear in the buffer size

    n

    the index which refers to the element to delete.

    returns

    n the element that was formerly at position n.

  128. def remove(n: Int, count: Int): Unit

    Removes a given number of elements on a given index position

    Removes a given number of elements on a given index position. May take time linear in the buffer size.

    n

    the index which refers to the first element to remove.

    count

    the number of elements to remove.

  129. def removeDuplicates: ListBuffer[A]

    Builds a new buffer from this buffer without any duplicate elements

    Builds a new buffer from this buffer without any duplicate elements.

    definition classes: SeqLike
  130. def repr: ListBuffer[A]

    The collection of type buffer underlying this TraversableLike object

    The collection of type buffer underlying this TraversableLike object. By default this is implemented as the TraversableLike object itself, but this can be overridden.

    definition classes: TraversableLike
  131. def result(): List[A]

    Produces a collection from the added elements

    Produces a collection from the added elements. The builder's contents are undefined after this operation.

  132. def reverse: ListBuffer[A]

    Returns new buffer wih elements in reversed order

    Returns new buffer wih elements in reversed order.

    definition classes: SeqLike
  133. def reverseIterator: Iterator[A]

    An iterator yielding elements in reversed order

    An iterator yielding elements in reversed order.

    Note: xs.reverseIterator is the same as xs.reverse.iterator but might be more efficient.

    definition classes: SeqForwarderSeqLike
  134. def reverseMap[B, That](f: (A) ⇒ B)(bf: CanBuildFrom[ListBuffer[A], B, That]): That

    Builds a new collection by applying a function to all elements of this buffer and collecting the results in reversed order

    Builds a new collection by applying a function to all elements of this buffer and collecting the results in reversed order.

    Note: xs.reverseMap(f) is the same as xs.reverse.map(f) but might be more efficient.

    B

    the element type of the returned collection.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    f

    the function to apply to each element.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That resulting from applying the given function f to each element of this buffer and collecting the results in reversed order.

    definition classes: SeqLike
  135. def reversedElements: Iterator[A]

  136. def sameElements[B >: A](that: Iterable[B]): Boolean

    Checks if the other iterable collection contains the same elements in the same order as this buffer

    Checks if the other iterable collection contains the same elements in the same order as this buffer.

    B

    the type of the elements of collection that.

    that

    the collection to compare with.

    returns

    true, if both collections contain the same elements in the same order, false otherwise.

    definition classes: IterableForwarderIterableLike
  137. def segmentLength(p: (A) ⇒ Boolean, from: Int): Int

    Computes length of longest segment whose elements all satisfy some preficate

    Computes length of longest segment whose elements all satisfy some preficate.

    p

    the predicate used to test elements.

    from

    the index where the search starts.

    returns

    the length of the longest segment of this buffer starting from index from such that every element of the segment satisfies the predicate p.

    definition classes: SeqForwarderSeqLike
  138. def size: Int

    The size of this buffer, equivalent to length

    The size of this buffer, equivalent to length.

    definition classes: SeqLikeTraversableLike
  139. def sizeHint(size: Int): Unit

    Gives a hint how many elements are expected to be added when the next result is called

    Gives a hint how many elements are expected to be added when the next result is called. Some builder classes will optimize their representation based on the hint. However, builder implementations are still required to work correctly even if the hint is wrong, i.e. a different number of elements is added.

    definition classes: Builder
  140. def slice(from: Int, until: Int): ListBuffer[A]

    Selects an interval of elements

    Selects an interval of elements.

    Note: c.slice(from, to) is equivalent to (but possibly more efficient than) c.drop(from).take(to - from)

    from

    the index of the first returned element in this buffer.

    until

    the index one past the last returned element in this buffer.

    returns

    a buffer containing the elements starting at index from and extending up to (but not including) index until of this buffer.

    definition classes: IterableLikeTraversableLike
  141. def sortBy[B](f: (A) ⇒ B)(ord: Ordering[B]): ListBuffer[A]

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

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

    B

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

    f

    the transformation function mapping elements to some other domain B.

    ord

    the ordering assumed on domain B.

    returns

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

    definition classes: SeqLike
  142. def sortWith[B >: A](ord: Ordering[B]): ListBuffer[A]

    Sorts this buffer according to an Ordering

    Sorts this buffer according to an Ordering.

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

    ord

    the ordering to be used to compare elements.

    returns

    a buffer consisting of the elements of this buffer sorted according to the ordering ord.

    definition classes: SeqLike
  143. def sortWith(lt: (A, A) ⇒ Boolean): ListBuffer[A]

    Sorts this buffer according to a comparison function

    Sorts this buffer according to a comparison function.

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

    lt

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

    returns

    a buffer consisting of the elements of this buffer sorted according to the comparison function lt.

    definition classes: SeqLike
  144. def span(p: (A) ⇒ Boolean): (ListBuffer[A], ListBuffer[A])

    Spits this buffer into a prefix/suffix pair according to a predicate

    Spits this buffer into a prefix/suffix pair according to a predicate.

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

    p

    the test predicate

    returns

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

    definition classes: TraversableLike
  145. def splitAt(n: Int): (ListBuffer[A], ListBuffer[A])

    Splits this buffer into two at a given position

    Splits this buffer into two at a given position. Note: c splitAt n is equivalent to (but possibly more efficient than) (c take n, c drop n).

    n

    the position at which to split.

    returns

    a pair of buffers consisting of the first n elements of this buffer, and the other elements.

    definition classes: TraversableLike
  146. def startsWith[B](that: Seq[B], offset: Int): Boolean

    Tests whether this buffer contains the given sequence at a given index

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

    If the both the receiver object, this and the argument, that are infinite sequences this method may not terminate.

    that

    the sequence to test

    offset

    the index where the sequence is searched.

    returns

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

    definition classes: SeqForwarderSeqLike
  147. def startsWith[B](that: Seq[B]): Boolean

    Tests whether this buffer starts with the given sequence

    Tests whether this buffer starts with the given sequence.

    that

    the sequence to test

    returns

    true if this collection has that as a prefix, false otherwise. otherwise false

    definition classes: SeqLike
  148. def stringPrefix: String

    Defines the prefix of the string representation

    Defines the prefix of the string representation.

  149. def sum[B >: A](num: Numeric[B]): B

    Sums up the elements of this collection

    Sums up the elements of this collection.

    B

    the result type of the + operator.

    num

    an implicit parameter defining a set of numeric operations which includes the + operator to be used in forming the sum.

    returns

    the sum of all elements of this buffer with respect to the + operator in num.

    definition classes: TraversableLike
  150. def tail: ListBuffer[A]

    Selects all elements except the first

    Selects all elements except the first.

    definition classes: TraversableLike
  151. def take(n: Int): ListBuffer[A]

    Selects first n elements

    Selects first n elements.

    n

    Tt number of elements to take from this buffer.

    returns

    a buffer consisting only of the first n elements of this buffer, or else the whole buffer, if it has less than n elements.

    definition classes: IterableLikeTraversableLike
  152. def takeRight(n: Int): ListBuffer[A]

    Selects last n elements

    Selects last n elements.

    n

    the number of elements to take

    returns

    a buffer consisting only of the last n elements of this buffer, or else the whole buffer, if it has less than n elements.

    definition classes: IterableLike
  153. def takeWhile(p: (A) ⇒ Boolean): ListBuffer[A]

    Takes longest prefix of elements that satisfy a predicate

    Takes longest prefix of elements that satisfy a predicate.

    p

    The predicate used to test elements.

    returns

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

    definition classes: IterableLikeTraversableLike
  154. def toArray[B >: A](arg0: ClassManifest[B]): Array[B]

    Converts this buffer to an array

    Converts this buffer to an array.

    B

    the type of the elements of the array. A ClassManifest for this type must be available.

    returns

    an array containing all elements of this buffer.

    definition classes: TraversableForwarderTraversableLike
  155. def toIndexedSeq[B >: A]: IndexedSeq[B]

    Converts this buffer to an indexed sequence

    Converts this buffer to an indexed sequence.

    definition classes: TraversableLike
  156. def toIterable: Iterable[A]

    Converts this buffer to an iterable collection

    Converts this buffer to an iterable collection.

    Note: Will not terminate for infinite-sized collections.

    definition classes: IterableLikeTraversableLike
  157. def toList: List[A]

    Converts this buffer to a list

    Converts this buffer to a list. Takes constant time. The buffer is copied lazily, the first time it is mutated.

  158. def toSeq: Seq[A]

    Converts this buffer to a sequence

    Converts this buffer to a sequence.

    definition classes: TraversableForwarderTraversableLike
  159. def toSet[B >: A]: Set[B]

    Converts this buffer to a set

    Converts this buffer to a set.

    definition classes: TraversableLike
  160. def toStream: Stream[A]

    Converts this buffer to a stream

    Converts this buffer to a stream.

    definition classes: TraversableForwarderTraversableLike
  161. def toString(): String

    Converts this buffer to a string

    Converts this buffer to a string

    definition classes: SeqLikeTraversableLike ⇐ AnyRef ⇐ Any
  162. def transpose[B](asTraversable: (A) ⇒ Traversable[B]): ListBuffer[ListBuffer[B]]

    Transposes this buffer of traversable collections into

    Transposes this buffer of traversable collections into

    definition classes: GenericTraversableTemplate
  163. def trimEnd(n: Int): Unit

    Removes the last n elements of this buffer

    Removes the last n elements of this buffer.

    n

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

    definition classes: BufferLike
  164. def trimStart(n: Int): Unit

    Removes the first n elements of this buffer

    Removes the first n elements of this buffer.

    n

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

    definition classes: BufferLike
  165. def union[B >: A, That](that: Seq[B])(bf: CanBuildFrom[ListBuffer[A], B, That]): That

    Produces a new sequence which contains all elements of this buffer and also all elements of a given sequence

    Produces a new sequence which contains all elements of this buffer and also all elements of a given sequence. xs union ys is equivalent to xs ++ ys.

    Another way to express this is that xs union ys computes the order-presevring multi-set union of xs and ys. union is hence a counter-oart of diff and intersect which also work on multi-sets.

    B

    the element type of the returned buffer.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    that

    the sequence to add.

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which contains all elements of this buffer followed by all elements of that.

    definition classes: SeqLike
  166. def unzip[A1, A2](asPair: (A) ⇒ (A1, A2)): (ListBuffer[A1], ListBuffer[A2])

    Converts this buffer of pairs into two collections of the first and second halfs of each pair

    Converts this buffer of pairs into two collections of the first and second halfs of each pair.

    asPair

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

    returns

    a pair buffers, containing the first, respectively second half of each element pair of this buffer.

    definition classes: GenericTraversableTemplate
  167. def update(n: Int, x: A): Unit

    Replaces element at index n with the new element newelem

    Replaces element at index n with the new element newelem. Takes time linear in the buffer size. (except the first element, which is updated in constant time).

    n

    the index of the element to replace.

    x

    the new element.

  168. def updated[B >: A, That](index: Int, elem: B)(bf: CanBuildFrom[ListBuffer[A], B, That]): That

    A copy of this buffer with one single replaced element

    A copy of this buffer with one single replaced element.

    B

    the element type of the returned buffer.

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type B being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, B, That] is found.

    index

    the position of the replacement

    elem

    the replacing element

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type B.

    returns

    a new collection of type That which is a copy of this buffer with the element at position index replaced by elem.

    definition classes: SeqLike
  169. def view(from: Int, until: Int): SeqView[A, ListBuffer[A]]

    Creates a non-strict view of a slice of this buffer

    Creates a non-strict view of a slice of this buffer.

    Note: the difference between view and slice is that view produces a view of the current buffer, whereas slice produces a new buffer.

    Note: view(from, to) is equivalent to view.slice(from, to)

    from

    the index of the first element of the view

    until

    the index of the element following the view

    returns

    a non-strict view of a slice of this buffer, starting at index from and extending up to (but not including) index until.

    definition classes: SeqLikeIterableLikeTraversableLike
  170. def view: SeqView[A, ListBuffer[A]]

    Creates a non-strict view of this buffer

    Creates a non-strict view of this buffer.

    definition classes: SeqLikeIterableLikeTraversableLike
  171. def withFilter(p: (A) ⇒ Boolean): WithFilter

    Creates a non-strict filter of this buffer

    Creates a non-strict filter of this buffer.

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

    p

    the predicate used to test elements.

    returns

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

    definition classes: TraversableLike
  172. def zip[A1 >: A, B, That](that: Iterable[B])(bf: CanBuildFrom[ListBuffer[A], (A1, B), That]): That

    Returns a buffer formed from this buffer and another iterable collection by combining corresponding elements in pairs

    Returns a buffer formed from this buffer and another iterable collection by combining corresponding elements in pairs. If one of the two collections is longer than the other, its remaining elements are ignored.

    A1

    the type of the first half of the returned pairs (this is always a supertype of the collection's element type A).

    B

    the type of the second half of the returned pairs

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type (A1, B) being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, (A1, B), That]. is found.

    that

    The iterable providing the second half of each result pair

    bf

    an implicit value of class CanBuildFrom which determines the result class That from the current representation type Repr and the new element type (A1, B).

    returns

    a new collection of type That containing pairs consisting of corresponding elements of this buffer and that. The length of the returned collection is the minimum of the lengths of this buffer$ and that.

    definition classes: IterableLike
  173. def zipAll[B, A1 >: A, That](that: Iterable[B], thisElem: A1, thatElem: B)(bf: CanBuildFrom[ListBuffer[A], (A1, B), That]): That

    Returns a buffer formed from this buffer and another iterable collection by combining corresponding elements in pairs

    Returns a buffer formed from this buffer and another iterable collection by combining corresponding elements in pairs. If one of the two collections is shorter than the other, placeholder elements are used to extend the shorter collection to the length of the longer.

    that

    the iterable providing the second half of each result pair

    thisElem

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

    thatElem

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

    returns

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

    definition classes: IterableLike
  174. def zipWithIndex[A1 >: A, That](bf: CanBuildFrom[ListBuffer[A], (A1, Int), That]): That

    Zips this buffer with its indices

    Zips this buffer with its indices.

    A1

    the type of the first half of the returned pairs (this is always a supertype of the collection's element type A).

    That

    the class of the returned collection. Where possible, That is the same class as the current collection class Repr, but this depends on the element type (A1, Int) being admissible for that class, which means that an implicit instance of type CanBuildFrom[Repr, (A1, Int), That]. is found.

    returns

    A new collection of type That containing pairs consisting of all elements of this buffer paired with their index. Indices start at 0.

    definition classes: IterableLike

Instance constructors

  1. new ListBuffer()