The underlying collection type with unknown element type
The underlying collection type with unknown element type
A generic implementation of the CanBuildFrom trait, which forwards
 all calls to apply(from) to the genericBuilder method of
 collection from, and which forwards all calls of apply() to the
 newBuilder method of this factory.
Test two objects for inequality.
Test two objects for inequality.
true if !(this == that), false otherwise.
Equivalent to x.hashCode except for boxed numeric types.
Equivalent to x.hashCode except for boxed numeric types.
 For numerics, it returns a hash value which is consistent
 with value equality: if two value type instances compare
 as true, then ## will produce the same hash value for each
 of them.
a hash value consistent with ==
Test two objects for equality.
Test two objects for equality.
true if the receiver object is equivalent to the argument; false otherwise.
Creates a list with the specified elements.
Creates a list with the specified elements.
the type of the list's elements
a new list with elements elems
Cast the receiver object to be of type T0.
Cast the receiver object to be of type T0.
 Note that the success of a cast at runtime is modulo Scala's erasure semantics.
 Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at
 runtime, while the expression List(1).asInstanceOf[List[String]] will not.
 In the latter example, because the type argument is erased as part of compilation it is
 not possible to check whether the contents of the list are of the requested type.
the receiver object.
if the receiver object is not an instance of the erasure of type T0.
   The standard CanBuildFrom instance for List objects.
   The standard CanBuildFrom instance for List objects.
   The created value is an instance of class GenericCanBuildFrom,
   which forwards calls to create a new builder to the
   genericBuilder method of the requesting collection.
Create a copy of the receiver object.
An empty collection of type List[A]
An empty collection of type List[A]
the type of the list's elements
Tests whether the argument (arg0) is a reference to the receiver object (this).
Tests whether the argument (arg0) is a reference to the receiver object (this).
 The eq method implements an equivalence relation on
 non-null instances of AnyRef, and has three additional properties:
x and y of type AnyRef, multiple invocations of
    x.eq(y) consistently returns true or consistently returns false.x of type AnyRef, x.eq(null) and null.eq(x) returns false.null.eq(null) returns true. When overriding the equals or hashCode methods, it is important to ensure that their behavior is
 consistent with reference equality.  Therefore, if two objects are references to each other (o1 eq o2), they
 should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).
true if the argument is a reference to the receiver object; false otherwise.
The equality method for reference types.
Called by the garbage collector on the receiver object when there are no more references to the object.
Called by the garbage collector on the receiver object when there are no more references to the object.
 The details of when and if the finalize method is invoked, as
 well as the interaction between finalize and non-local returns
 and exceptions, are all platform dependent.
A representation that corresponds to the dynamic class of the receiver object.
A representation that corresponds to the dynamic class of the receiver object.
The nature of the representation is platform dependent.
a representation that corresponds to the dynamic class of the receiver object.
not specified by SLS as a member of AnyRef
The hashCode method for reference types.
Test whether the dynamic type of the receiver object is T0.
Test whether the dynamic type of the receiver object is T0.
 Note that the result of the test is modulo Scala's erasure semantics.
 Therefore the expression 1.isInstanceOf[String] will return false, while the
 expression List(1).isInstanceOf[List[String]] will return true.
 In the latter example, because the type argument is erased as part of compilation it is
 not possible to check whether the contents of the list are of the specified type.
true if the receiver object is an instance of erasure of type T0; false otherwise.
Equivalent to !(this eq that).
Equivalent to !(this eq that).
true if the argument is not a reference to the receiver object; false otherwise.
The default builder for List objects.
The default builder for List objects.
the type of the list's elements
Wakes up a single thread that is waiting on the receiver object's monitor.
Wakes up a single thread that is waiting on the receiver object's monitor.
not specified by SLS as a member of AnyRef
Wakes up all threads that are waiting on the receiver object's monitor.
Wakes up all threads that are waiting on the receiver object's monitor.
not specified by SLS as a member of AnyRef
Creates a String representation of this object.
Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.
a String representation of the object.
This method is called in a pattern match { case Seq(.
This method is called in a pattern match { case Seq(...) => }.
the selector value
sequence wrapped in an option, if this is a Seq, otherwise none
Tests whether the given predicate p holds
 for some corresponding elements of the argument lists.
Tests whether the given predicate p holds
 for some corresponding elements of the argument lists.
n != 0 && (p(a0,b0) ||
          ... || p(an,bn))] if the lists are
          [a0, ..., ak],
          [b0, ..., bl] and
          n = min(k,l)
(Since version 2.8.0) use (xs, ys).zipped.exists(f)' instead of List.exists2(xs, ys)(f)'
Concatenate all the elements of a given list of lists.
Concatenate all the elements of a given list of lists.
the list of lists that are to be concatenated
the concatenation of all the lists
(Since version 2.8.0) use xss.flatten' instead of List.flatten(xss)'
Tests whether the given predicate p holds
 for all corresponding elements of the argument lists.
Tests whether the given predicate p holds
 for all corresponding elements of the argument lists.
(p(a0,b0) &&
          ... && p(an,bn))]
          if the lists are [a0, ..., ak];
          [b0, ..., bl]
          and n = min(k,l)
(Since version 2.8.0) use (xs, ys).zipped.forall(f)' instead of List.forall2(xs, ys)(f)'
Converts a range of an array into a list.
Converts a range of an array into a list.
the array to convert
the first index to consider
the length of the range to convert
a list that contains the same elements than arr
              in the same order
(Since version 2.8.0) use array.view(start, end).toList' instead of List.fromArray(array, start, end)'
Converts an array into a list.
Converts an array into a list.
the array to convert
a list that contains the same elements than arr
            in the same order
(Since version 2.8.0) use array.toList' instead of List.fromArray(array)'
Converts an iterator to a list.
Converts an iterator to a list.
the iterator to convert
a list that contains the elements returned by successive
           calls to it.next
(Since version 2.8.0) use it.toList' instead of List.toList(it)'
Parses a string which contains substrings separated by a separator character and returns a list of all substrings.
Parses a string which contains substrings separated by a separator character and returns a list of all substrings.
the string to parse
the separator character
the list of substrings
(Since version 2.8.0) use str.split(separator).toList' instead of List.fromString(str, separator)'
Returns the Left values in the given Iterable
of Eithers.
Returns the Left values in the given Iterable
of Eithers.
(Since version 2.8.0) use xs collect { case Left(x: A) => x }' instead of List.lefts(xs)'
Create a list containing several copies of an element.
Create a list containing several copies of an element.
the length of the resulting list
the element composing the resulting list
a list composed of n elements all equal to elem
(Since version 2.8.0) use fill' instead
Returns the list resulting from applying the given function f
 to corresponding elements of the argument lists.
Returns the list resulting from applying the given function f
 to corresponding elements of the argument lists.
function to apply to each pair of elements.
[f(a0,b0), ..., f(an,bn)] if the lists are
         [a0, ..., ak], [b0, ..., bl] and
         n = min(k,l)
(Since version 2.8.0) use (xs, ys).zipped.map(f)' instead of List.map2(xs, ys)(f)'
Returns the list resulting from applying the given function
 f to corresponding elements of the argument lists.
Returns the list resulting from applying the given function
 f to corresponding elements of the argument lists.
function to apply to each pair of elements.
[f(a0,b0,c0),
          ..., f(an,bn,cn)]
          if the lists are [a0, ..., ak],
          [b0, ..., bl],
          [c0, ..., cm] and
          n = min(k,l,m)
(Since version 2.8.0) use (xs, ys, zs).zipped.map(f)' instead of List.map3(xs, ys, zs)(f)'
Like xs map f, but returns xs unchanged if function
 f maps all elements to themselves.
Like xs map f, but returns xs unchanged if function
 f maps all elements to themselves.
(Since version 2.8.0) use xs.mapConserve(f)' instead of List.mapConserve(xs, f)'
Create a sorted list with element values
vn+1 = step(vn)
where v0 = start
and elements are in the range between start (inclusive)
and end (exclusive)
Create a sorted list with element values
vn+1 = step(vn)
where v0 = start
and elements are in the range between start (inclusive)
and end (exclusive)
the start value of the list
the end value of the list
the increment function of the list, which given vn,
             computes vn+1. Must be monotonically increasing
             or decreasing.
the sorted list of all integers in range [start;end).
(Since version 2.8.0) use iterate' instead
Returns the Right values in the givenIterable of  Eithers.
Returns the Right values in the givenIterable of  Eithers.
(Since version 2.8.0) use xs collect { case Right(x: B) => x }' instead of List.rights(xs)'
Transforms an Iterable of Eithers into a pair of lists.
Transforms an Iterable of Eithers into a pair of lists.
a pair of lists.
(Since version 2.8.0) use (for (Left(x) <- es) yield x, for (Right(x) <- es) yield x) instead
Returns the given list of characters as a string.
Returns the given list of characters as a string.
the list to convert.
the list in form of a string.
(Since version 2.8.0) use xs.mkString' instead of List.toString(xs)'
Transposes a list of lists.
Transposes a list of lists. pre: All element lists have the same length.
the list of lists
the transposed list of lists
(Since version 2.8.0) use xss.transpose' instead of List.transpose(xss)'
Transforms an iterable of pairs into a pair of lists.
Transforms an iterable of pairs into a pair of lists.
the iterable of pairs to unzip
a pair of lists.
(Since version 2.8.0) use xs.unzip' instead of List.unzip(xs)'
Transforms a list of pairs into a pair of lists.
Transforms a list of pairs into a pair of lists.
the list of pairs to unzip
a pair of lists.
(Since version 2.8.0) use xs.unzip' instead of List.unzip(xs)'
This object provides a set of operations to create
Listvalues.