summaryrefslogtreecommitdiff
path: root/src/library
Commit message (Collapse)AuthorAgeFilesLines
* Undeprecated @retain as suggested by odersky on...Paul Phillips2010-04-201-2/+3
| | | | | | Undeprecated @retain as suggested by odersky on scala-internals 3/24/10. No review.
* More fully integrate immutable.Queue into colle...Paul Phillips2010-04-202-10/+19
| | | | | | More fully integrate immutable.Queue into collections. Fixes issue with return type of methods being Seq. Closes #3297, no review.
* Fixed #3322wqdcaoyuan2010-04-192-15/+20
|
* Initialization ordering issue in BigDecimal.Paul Phillips2010-04-151-11/+10
| | | | | | be slipping by because -Xcheckinit doesn't work since specialization began.) No review.
* Revert "Fix for #3284.Iulian Dragos2010-04-132-60/+21
| | | | | | test/files/run/json.scala, and we need at least one good nightly before the RC.
* Fix for #3284.Derek Chen-Beker2010-04-132-21/+60
| | | | | | but in the interest of not breaking backwards compatibility, the JSON.parse method has been marked deprecated for now.
* Some mopping up in equality.Paul Phillips2010-04-133-7/+22
| | | | | | way equals was being handled, and hammered it out. New ==/## tests which covers all types and values. Review by odersky.
* A safety improvement for random path generation...Paul Phillips2010-04-131-7/+16
| | | | | | A safety improvement for random path generation, and a small change to Random for a more general interface. Review by community.
* more documentationMartin Odersky2010-04-1332-180/+191
|
* Documented immutable.*. no reviewAleksandar Pokopec2010-04-1310-82/+152
|
* Docs. no reviewAleksandar Pokopec2010-04-1312-50/+144
|
* Immutable up to Queue docs. no reviewAleksandar Pokopec2010-04-1318-111/+133
|
* A brace got hurt while documenting. no review.Aleksandar Pokopec2010-04-131-1/+1
|
* closes #3241 and improves serialization of hash...Tiark Rompf2010-04-132-117/+68
| | | | | | closes #3241 and improves serialization of hash tries. review by community.
* docs for immutable.A-L*. no reviewAleksandar Pokopec2010-04-1314-73/+133
|
* Documentation for mutable collections. No review.Aleksandar Pokopec2010-04-1233-109/+233
|
* Regenerated tuples, products and (Abstract)Func...Iulian Dragos2010-04-1290-102/+571
| | | | | | | | Regenerated tuples, products and (Abstract)Functions. We needed to have separate files for AbstractFunctionN because the compiler may need their symbol even before their sourcefile is parsed. In such cases it relies on finding a source file with the right name.
* [scaladoc] More mitigation code for dangerous H...Gilles Dubochet2010-04-121-12/+10
| | | | | [scaladoc] More mitigation code for dangerous HTML tags. No review.
* Reverting r21442 the Exception patch because I ...Paul Phillips2010-04-111-78/+64
| | | | | | Reverting r21442 the Exception patch because I think it is the cause of the deadlocking. Not my greatest weekend. No review.
* Some overdue cleanups on Exception.Paul Phillips2010-04-111-64/+78
|
* Introduces scala.tools.cmd providing command li...Paul Phillips2010-04-111-0/+1
| | | | | | | | | | | | | | | | | | Introduces scala.tools.cmd providing command line tool infrastructure. For a quick look at what can be done, see scala.tools.cmd.Demo For a more involved, potentially eye-straining look, see scala.tools.partest.PartestSpec To experience it through the eyes of Joe Partest User, run test/partest Review by community.
* Docs. No review.Aleksandar Pokopec2010-04-1010-45/+153
|
* More docs. No review.Aleksandar Pokopec2010-04-1025-74/+207
|
* docs. no reviewAleksandar Pokopec2010-04-1012-70/+166
|
* Docs. No review.Aleksandar Pokopec2010-04-094-33/+85
|
* Docs for MultiMap done. Review by community.pAleksandar Pokopec2010-04-091-3/+18
|
* MultiMap and WeakHashMap docs. no reviewAleksandar Pokopec2010-04-092-2/+24
|
* more docsMartin Odersky2010-04-0911-29/+25
|
* Updated documentationMartin Odersky2010-04-0923-122/+107
|
* Work on mutable collections docs.Aleksandar Pokopec2010-04-0918-71/+96
|
* Changed the syntax of the specialized annotation:Iulian Dragos2010-04-099-18/+22
| | | | | | | | | instead of a flaky string, it now takes a repeated parameter list of primitive types: @specialized("Int, Double") becomes @specialized(Int, Double). No review.
* Companion objects of primitive types are now va...Iulian Dragos2010-04-091-0/+86
| | | | | | | | | Companion objects of primitive types are now values. Term 'scala.Int' resolves in bytecode to an instance of 'scala.runtime.Int'. This is the first step towards replacing strings in @specialized with a proper list of types, so instead of @specialized("Int, Float") one will write @specialized(Int, Float). Review by odersky.
* Changes to docs of collections in the `immutabl...Aleksandar Pokopec2010-04-0920-98/+157
| | | | | | Changes to docs of collections in the `immutable` package. Review by odersky.
* Fix and test for Iterator corner case.Paul Phillips2010-04-081-2/+5
|
* More cleanups in docs. Review by odersky.Aleksandar Pokopec2010-04-084-20/+20
|
* Another set of typos fixed.Aleksandar Pokopec2010-04-087-11/+14
|
* Mostly some undocumented stuff in JavaConversions.Aleksandar Pokopec2010-04-083-4/+25
|
* Some typos in collections. Review by odersky.Aleksandar Pokopec2010-04-084-5/+4
|
* Gave Stream a lazy withFilter implementation.Paul Phillips2010-04-071-30/+74
| | | | | | | can have a collection containing all the even numbers in the universe and still be home in time for tea. Threw in some Stream cleanups for free. Closes #3265, review by community.
* Tore out some unnecessary ambiguity-creating al...Paul Phillips2010-04-074-9/+5
| | | | | | | Tore out some unnecessary ambiguity-creating aliases in the XML package object. I have a feeling we'll be traversing this kind of territory again. Closes #3264, no review.
* Fixes #2535. Review by community.Aleksandar Pokopec2010-04-061-32/+62
|
* Optimized toArray for ArrayOps and WrappedArrays.Martin Odersky2010-04-065-6/+35
|
* As a brief diversion from real work, implemente...Paul Phillips2010-04-0640-64/+64
| | | | | | | | | As a brief diversion from real work, implemented Damerau–Levenshtein and ran it on trunk to elicit obvious misspellings. Unfortunately they're mostly in places like compiler comments which real people never see, but I fixed them anyway. All those English Lit majors who peruse our sources are sure to be pleased. No review.
* Made Vector the standard impl of IndexedSeq.Martin Odersky2010-04-052-3/+3
|
* Rearranging IndexedSeq/LinearSeq and related workMartin Odersky2010-04-0534-899/+707
|
* [scaladoc] Considerably reduced size of documen...Gilles Dubochet2010-04-031-1/+1
| | | | | | | | [scaladoc] Considerably reduced size of documentation by not generating certain strange inner classes. Scaladoc is much much faster (more than 10x on library); not exactly clear why. Protected members are printed in documentation and displayed on demand. Review by malayeri.
* closes #3242. review by community.Tiark Rompf2010-04-021-3/+4
|
* closes #3203, overriding more of the Traversabl...Tiark Rompf2010-03-311-51/+88
| | | | | | | closes #3203, overriding more of the TraversableLike methods. also tightened access privileges to internal fields and methods. review by community.
* Noticed that the implementation of toArray Iter...Paul Phillips2010-03-301-3/+6
| | | | | | | Noticed that the implementation of toArray Iterator had acquired via TraversableOnce called "size" to allocate the array, leaving a nice empty iterator to actually populate it. Fixed. No review.
* TraversableOnce. Review by odersky.Paul Phillips2010-03-2742-1142/+730
|