summaryrefslogtreecommitdiff
path: root/src/library
Commit message (Collapse)AuthorAgeFilesLines
* Newly generated Tuple/Product/Function classes ...Paul Phillips2009-06-1767-703/+622
| | | | | | Newly generated Tuple/Product/Function classes from new genprod, plus a couple minor tweaks to genprod to keep tests happy.
* made Hashable use a Seq instead of List.Paul Phillips2009-06-161-6/+6
|
* More work on all the collection proxies.Paul Phillips2009-06-1611-74/+120
| | | | | | attempted to bring Map/Set/Sequence/Iterable up to date with the methods in their underlying classes.
* added headers, svn keywords, updated pilib exam...michelou2009-06-1661-85/+257
| | | | | added headers, svn keywords, updated pilib examples
* An attempt at reintegrating MapProxy.Paul Phillips2009-06-155-61/+118
|
* A RichClass for the java side which offers type...Paul Phillips2009-06-122-18/+92
| | | | | | | A RichClass for the java side which offers typed Constructors. Working around bug #1560 and improving on the java interface. Also a small experiment in the reflection department.
* Lots and lots of BigInt and BigDecimal code att...Paul Phillips2009-06-112-29/+87
| | | | | | | Lots and lots of BigInt and BigDecimal code attempting to make it all consistent and equality correct and consistent (to the extent that's even possible.) I'll be glad when this is over.
* Fixed #2051.Paul Phillips2009-06-101-3/+3
|
* Trying to bring BigDecimal all the way up to sp...Paul Phillips2009-06-101-37/+78
| | | | | | | | | | | | | | | | | Trying to bring BigDecimal all the way up to speed with its java counterpart. Added a MathContext val and perform all operations with that MathContext, and an apply method which accepts a math context so you can e.g.: val x = BigDecimal(1.0) x / 3 // ArithmeticException x(DECIMAL32) / 3 // 0.3333333 Also added most of the java BigDecimal methods which for whatever reason weren't exposed by the wrapper. Precision to infinity... and beyond!
* Added some missing methods to BigDecimal.Paul Phillips2009-06-101-0/+10
|
* removed debug code (revert r17767 and r17780)Lukas Rytz2009-06-102-51/+1
|
* A couple findbugs inspired bugfixes, and a new ...Paul Phillips2009-06-092-1/+64
| | | | | | A couple findbugs inspired bugfixes, and a new trait scala.util.Hashable, now used by GenericRange.
* Use `keySet' and `valueIterable' to get keys an...Gilles Dubochet2009-06-086-28/+49
| | | | | | Use `keySet' and `valueIterable' to get keys and values from a map as non-iterator collections.
* Fix for #1993.Paul Phillips2009-06-071-15/+11
|
* Tightened up XHTML minimization logic - closes ...Paul Phillips2009-06-071-3/+9
| | | | | Tightened up XHTML minimization logic - closes #2043.
* fixed BeanProperty, added BooleanBeanProperty, ...Lukas Rytz2009-06-072-7/+27
| | | | | | fixed BeanProperty, added BooleanBeanProperty, added many tests (#1029, #1751, #294, #1942, #1782, #1788, #637).
* Fixed a couple bugs in GenericRange and added t...Paul Phillips2009-06-054-18/+62
| | | | | | | Fixed a couple bugs in GenericRange and added the fun and exciting BigDecimal Range. It throws an exception if it ever can't do anything exactly, so it shouldn't be too dangerous to rely upon.
* Altered GenericRange contains to do something l...Paul Phillips2009-06-052-7/+20
| | | | | | Altered GenericRange contains to do something less useless when trying to cast the parameter to T. And check contains properly when step != 1.
* towards fixing msil.Lukas Rytz2009-06-041-1/+1
|
* Added the much clamored for toSet to Traversable.Paul Phillips2009-06-031-0/+4
| | | | | performance love, but then it has a lot of company in that regard.
* Abstracted XML loading interface into xml.facto...Paul Phillips2009-06-035-186/+138
| | | | | | | | Abstracted XML loading interface into xml.factory.XMLLoader. Now scala.xml.XML uses a default implementation of XMLLoader, and XML.withSAXParser(parser) creates a new one which will use the supplied parser. Implements feature #1436.
* Another big XML commit.Paul Phillips2009-06-0322-386/+193
| | | | | and using as a testbed for default arguments.
* fixed some problems with positions.Martin Odersky2009-06-021-7/+6
|
* Moved NameTransformer from the compiler to the ...Paul Phillips2009-06-021-0/+147
| | | | | | Moved NameTransformer from the compiler to the library because I need access to the logic for reflection.
* More XML logic smoothing.Paul Phillips2009-06-021-26/+25
|
* Massive XML simplifications.Paul Phillips2009-06-029-151/+66
|
* "Map.values" returns a sequence instead of a set.Gilles Dubochet2009-06-025-17/+15
|
* Some work towards fixing ticket #2030.David MacIver2009-06-013-5/+27
|
* toString for TreeSet. Documentation cleanup.David MacIver2009-06-012-2/+3
|
* Fix and test for bug 2029.David MacIver2009-06-016-64/+64
|
* Modify TreeSet to use Ordering instead of Order...David MacIver2009-06-012-8/+12
| | | | | | Modify TreeSet to use Ordering instead of Ordered to bring it inline with TreeMap and improve performance.
* big overhaul of annotations implementation.Lukas Rytz2009-05-3057-536/+384
|
* Null check on RichString->String implicit.Paul Phillips2009-05-301-1/+1
|
* Named and default argumentsLukas Rytz2009-05-302-3/+3
| | | | | | | - MethodTypes now have (params: List[Symbol]) - "copy"-methods for case classes - the "copy" object in the compiler is now called "treeCopy"
* Endless exploration of exception handling synta...Paul Phillips2009-05-291-26/+47
| | | | | Endless exploration of exception handling syntax continues.
* Exception handling approaching platonic ideal.Paul Phillips2009-05-291-45/+44
|
* Continuing to refine exception composition.Paul Phillips2009-05-291-36/+55
|
* Fix for #2024.Paul Phillips2009-05-291-1/+1
|
* More efficient 'clear' method.Iulian Dragos2009-05-291-0/+3
|
* "scala.Random" has been deprecated since 2.7.2 ...Gilles Dubochet2009-05-291-25/+0
| | | | | | "scala.Random" has been deprecated since 2.7.2 (replaced by "scala.util.Random"), and will not be part of 2.8.
* Further development of the Numeric and Ordering...Paul Phillips2009-05-286-165/+81
| | | | | | | Further development of the Numeric and Ordering traits. Replaced Predef implicits from everything => Ordered with a single implicit from Ordering => Ordered.
* Added a sequence shuffling method to scala.util...Paul Phillips2009-05-281-1/+30
| | | | | Added a sequence shuffling method to scala.util.Random.
* Implements feature request #2008.Gilles Dubochet2009-05-281-2/+1
|
* The classics never go out of style: reintegrate...Paul Phillips2009-05-282-73/+36
| | | | | The classics never go out of style: reintegrated immutable.Queue.
* Deprecated "elements" method moved to "Iterable...Gilles Dubochet2009-05-2710-28/+2
| | | | | Deprecated "elements" method moved to "Iterable" were it belongs.
* Reintegrated PriorityQueue.Paul Phillips2009-05-275-60/+53
|
* In "Iterable" and in all its subclasses, "itera...Gilles Dubochet2009-05-27121-391/+470
| | | | | | In "Iterable" and in all its subclasses, "iterator" replaces "elements" (and assorted changes).
* Logic error in Traversable; fixes #2002.Paul Phillips2009-05-271-1/+1
|
* Not quite complete reintegration of a handful o...Paul Phillips2009-05-2711-108/+78
| | | | | | | | Not quite complete reintegration of a handful of collection classes, but they compile quietly and keep to themselves (of course that's always what the neighbors say after some loner goes on a rampage, so it's not the innocuous description it once was.)
* Moved the script related classes from scala.col...Paul Phillips2009-05-265-57/+50
| | | | | | Moved the script related classes from scala.collection.mutable to scala.collection.script and reintegrated the Scriptable trait.