summaryrefslogtreecommitdiff
path: root/src/library
Commit message (Collapse)AuthorAgeFilesLines
* Fix and test case for #2721.Paul Phillips2009-11-301-1/+1
|
* Removed a deprecated method which snuck back in...Paul Phillips2009-11-301-9/+0
| | | | | | | | Removed a deprecated method which snuck back into TraversableLike. "remove" had only ever been deprecated in List, so I moved it there so it didn't unnecessarily materialize as a deprecated method in every Traversable.
* Extensive documentation of TraversableLike in p...Martin Odersky2009-11-303-406/+787
| | | | | Extensive documentation of TraversableLike in proposed new style.
* Fix for #2725 - configure the SAX parser not to...Paul Phillips2009-11-281-3/+7
| | | | | | Fix for #2725 - configure the SAX parser not to freak out on an invalid doctype URL.
* Removed method cached from MapLike - it's an ex...Paul Phillips2009-11-271-9/+0
| | | | | | Removed method cached from MapLike - it's an exact duplicate of getOrElseUpdate. Closes #2715.
* Performance improvement on Ordering.Paul Phillips2009-11-271-0/+5
|
* Closes #2540 and closes #2593.Donna Malayeri2009-11-271-4/+45
|
* Unbreaking build.Paul Phillips2009-11-261-1/+0
|
* Following up on my deprecated method overreach.Paul Phillips2009-11-263-41/+3
| | | | | trunk contains all the deprecated methods it should.
* Closes #2707.Paul Phillips2009-11-261-0/+6
|
* Improved fix for #2552Donna Malayeri2009-11-261-32/+26
|
* undeprecated containsSlice.Martin Odersky2009-11-267-20/+19
|
* Fix for #2704.Paul Phillips2009-11-251-7/+3
|
* Cleaning up in scala.runtime.*.Paul Phillips2009-11-252-40/+22
| | | | | | | Fixed toArray to copy more than one element into the new one. Added sameElements to Iterator to further simplify the case class support logic, and because it should be there anyway.
* Working on scala.runtime.Paul Phillips2009-11-252-270/+19
| | | | | | and falling out of sync with StringLike. Made a method in MethodCache verifiably tail-recursive.
* Missed including Predef.printf in r19863.Paul Phillips2009-11-251-1/+1
|
* Updating deprecated usages in new scaladoc code.Paul Phillips2009-11-251-1/+1
| | | | | | as inspiration to chase down a few spots using get and getOrElse in suboptimal fashion.
* Added some logic to StringLike.format so that s...Paul Phillips2009-11-254-7/+22
| | | | | | Added some logic to StringLike.format so that scala Numeric types can be used without a runtime error.
* quick fix for #2673: relaxed zipped on Tuple2/T...Adriaan Moors2009-11-253-22/+29
| | | | | | quick fix for #2673: relaxed zipped on Tuple2/Tuple3 (back to using A => B for constraint instead of A <%< B)
* Giant cleanup of the automata files. Fixes #1992.Paul Phillips2009-11-245-345/+140
|
* Made mutable.OpenHashMap a MapLike. Closes #2681.Philipp Haller2009-11-241-13/+17
|
* Added reverse capabilities to PriorityQueue.Aleksandar Pokopec2009-11-241-1/+19
|
* close #2626 as specified by MartinAdriaan Moors2009-11-241-1/+4
|
* Some more XML cleanups.Paul Phillips2009-11-244-88/+46
| | | | | compiler dependency on scala.util.automata.
* Partitioned scala.Math and scala.math a little ...Paul Phillips2009-11-233-66/+242
| | | | | | | Partitioned scala.Math and scala.math a little bit. ALL_CAP aliases are deprecated and only in Math. Formerly unavailable members of java.lang.Math which were added in 1.5 are now available in scala.math.
* Closed #2552.Donna Malayeri2009-11-231-6/+26
|
* A couple more warning fixes I meant to check in...Paul Phillips2009-11-232-3/+3
| | | | | A couple more warning fixes I meant to check in with r19758.
* Priority queue reverse is undefined - overriden...Aleksandar Pokopec2009-11-221-0/+14
| | | | | | Priority queue reverse is undefined - overriden to throw an exception. Reverse iterator seems to have sense - it is overriden and is defined, and some methods in SeqLike are implemented in terms of it.
* Removed all traces of Boxed*Array. New starr.Paul Phillips2009-11-2214-721/+1
|
* Applied performance patch and test case from ij...Paul Phillips2009-11-213-2/+41
| | | | | Applied performance patch and test case from ijuma; closes #2526.
* Expanding the warning cleansing into -unchecked...Paul Phillips2009-11-202-7/+9
| | | | | Expanding the warning cleansing into -unchecked territory.
* updated/extended serialization tests michelou2009-11-2010-17/+103
|
* More deprecation avoidance and some minor smoot...Paul Phillips2009-11-204-13/+4
| | | | | More deprecation avoidance and some minor smoothings.
* Eliminated warning about Tuple2 and Tuple3 impo...Paul Phillips2009-11-202-2/+2
| | | | | Eliminated warning about Tuple2 and Tuple3 importing Traversable.
* Tweak to Iterator.++ to keep it from going into...Paul Phillips2009-11-201-7/+11
| | | | | | Tweak to Iterator.++ to keep it from going into an infinite loop on x ++ x.
* Deprecated the Tuple(...) methods in Predef, bu...Paul Phillips2009-11-202-10/+45
| | | | | | | Deprecated the Tuple(...) methods in Predef, but at the same time extended the overload out to 22 and moved them into the scala package object.
* PriorityQueue fixed, should work ok now.Aleksandar Pokopec2009-11-203-37/+84
|
* More world-shaking deprecation work.Paul Phillips2009-11-2015-58/+65
| | | | | | | object, updating some @deprecated messages to give realistic alternatives, properly resolving the semantic mismatch between List.-- and diff, its once-recommended but inequivalent alternative.
* Simplifiations in collections libraries, enable...Martin Odersky2009-11-2014-55/+63
| | | | | | Simplifiations in collections libraries, enabled by introduction of Self type in TraversableLike.
* Slightly more fixy fix than the previous fix.Paul Phillips2009-11-201-2/+2
|
* Fix for infinite loop in StringBuilder pointed ...Paul Phillips2009-11-201-1/+1
| | | | | Fix for infinite loop in StringBuilder pointed out by dpp.
* Deprecation patrol exercises the new capabiliti...Paul Phillips2009-11-192-29/+26
| | | | | | Deprecation patrol exercises the new capabilities in Tuple2.zipped among other exciting no-ops.
* closes #2670.Lukas Rytz2009-11-196-10/+53
|
* Restoring an embarassingly large quantity of de...Paul Phillips2009-11-199-0/+196
| | | | | | Restoring an embarassingly large quantity of deprecated methods whose time had not yet come.
* More deprecation soothing.Paul Phillips2009-11-187-9/+10
| | | | | warning count.
* Finally completed the incredibly tedious task o...Paul Phillips2009-11-181-11/+0
| | | | | | Finally completed the incredibly tedious task of removing the lower case primitive aliases from Predef. Had to rebuild msil.jar along the way.
* Fixed a bug in Range which was causing take and...Paul Phillips2009-11-181-2/+5
| | | | | | | | Fixed a bug in Range which was causing take and drop to overflow and return empty if the argument was larger than the actual length of the Range and arg * step > MaxInt.
* More deprecation work.Paul Phillips2009-11-1816-214/+0
| | | | | | since 2.7.2 (still except for lower case primitive type aliases) and removes every deprecated method which has never shipped in a release.
* More minor removals and some cleanups of !!!s a...Paul Phillips2009-11-185-37/+5
| | | | | More minor removals and some cleanups of !!!s and XXXs.
* Removing bits from the library which shouldn't ...Paul Phillips2009-11-187-405/+1
| | | | | | | | | | | | | | | Removing bits from the library which shouldn't make the 2.8 cut. Removed outright: util.Hashable: unused and I have a better plan for this net.Utility: class created to accomodate expansion which never materialized reflect.Invocation: doesn't go far enough, needs love it won't find right now reflect.RichClass: same as Invocation Moved into compiler: util.ScalaClassLoader: too useful to lose, not done enough to ship