summaryrefslogtreecommitdiff
path: root/test/files/run/withIndex.scala
Commit message (Collapse)AuthorAgeFilesLines
* deprecate Pair and TripleDen Shabalin2013-11-201-1/+1
|
* Tighter pattern matching hits the street.Paul Phillips2010-02-181-1/+1
| | | | | | | | | | | | | is final and does not conform to the pattern, it will no longer compile. See all the exciting things you can no longer do: "bob".reverse match { case Seq('b', 'o', 'b') => true } // denied! "bob".toArray match { case Seq('b', 'o', 'b') => true } // rejected! final class Dunk def f3(x: Dunk) = x match { case Seq('b', 'o', 'b') => true } // uh-uh! And so forth. Review by odersky.
* In "Iterable" and in all its subclasses, "itera...Gilles Dubochet2009-05-271-3/+3
| | | | | | In "Iterable" and in all its subclasses, "iterator" replaces "elements" (and assorted changes).
* massive new collections checkin.Martin Odersky2009-05-081-1/+1
|
* Removed unchecked warning from 'withIndex'Philipp Haller2008-02-011-1/+1
|
* many bug fixes; short syntax for structural types.Martin Odersky2007-07-231-1/+6
|
* updated check files with new tuple syntaxmichelou2006-12-131-0/+2
|
* added zipWithIndex to several collection classesLex Spoon2006-05-051-0/+22