summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/package.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-9684 Deprecate JavaConversionsSom Snytt2016-04-221-6/+2
| | | | | | | | | Implicit conversions are now in package convert as ImplicitConversions, ImplicitConversionsToScala and ImplicitConversionsToJava. Deprecated WrapAsJava, WrapAsScala and the values in package object. Improve documentation.
* Improve collections documentation and prefer () to {}vsalvis2015-10-271-15/+23
| | | | | | | | | - Remove some duplicate method documentation that is now inherited - Whitespace edits - Rewording of method docs - Clearer usage examples - tparam alignment for some usecase tags - Prefer () to { } for do nothing bodies
* Update links to docs, codehaus and citeseerJanek Bogucki2015-09-041-0/+3
| | | | | | | | | | | | | | | | | docs.scala-lang.org - Align some links to new layout for docs.scala-lang.org - Include link to concrete parallel collection performance characteristics codehaus - Subsitute a link to a JIRA email for the 404 JRUBY-3576 JIRA link in Codec.scala. jira.codehaus.org is not redirecting this. citeseer - Replace the citeseer link with a direct link to a PDF which is not behind a login challenge.
* Fix many typos in docs and commentsmpociecha2014-12-141-1/+1
| | | | | | | | | | | | | This commit corrects many typos found in scaladocs, comments and documentation. It should reduce a bit number of PRs which fix one typo. There are no changes in the 'real' code except one corrected name of a JUnit test method and some error messages in exceptions. In the case of typos in other method or field names etc., I just skipped them. Obviously this commit doesn't fix all existing typos. I just generated in IntelliJ the list of potential typos and looked through it quickly.
* Brings all copyrights (in comments) up-to-date, from 2011/12 to 2013Heather Miller2012-11-021-1/+1
|
* Fixes SI-5441.Aleksandar Prokopec2012-05-241-2/+2
|
* Small documentation fixes & small fix to Scaladoc @see formattingHeather Miller2012-05-151-2/+2
|
* Moved the classes and objects which are defined...Paul Phillips2011-08-091-0/+8
| | | | | | | | | | | | | | | | | Moved the classes and objects which are defined in package objects out. In principle this is something you should be able to do. In practice right now it means bugs, to no advantage. I also deprecated RangeUtils, an unused, undocumented trait in the immutable package. It seems like there is a ton of stuff in the public API which should not be in the public API. It's really tedious having to go through a whole deprecation cycle to dispose of what could have been an internal-only class (and was presumably intended as such given the the absence of documentation.) No review.
* After having to update the code for someone els...Paul Phillips2011-04-301-1/+1
| | | | | | | After having to update the code for someone else, ran damarau levenshtein on trunk again. Patchwise, I guess correcting spelling errors in comments is about as safe as it gets. No review.
* Minor collections cleanups, no review.Paul Phillips2011-01-201-11/+25
|
* Fixing jvm 1.5 support for parallel collections.Aleksandar Pokopec2010-12-091-0/+1
| | | | | | | | | | | | | | | | | | Special cased with thread pool executor scheduling. Fixed an ugly concurrency bug where futures returned by a thread pool executor didn't remove the task from the queue when cancel was called. Note to self and others: don't cancel futures returned by thread pool executors, it might lead to unexpected behaviour. Modified the executor to add new threads if all the active threads are syncing, in order to avoid deadlocks. Fixed a hidden bug in AdaptiveWorkStealingTasks, where correct behaviour depended on the execution order of the tasks. This didn't fail before with ForkJoinTasks, since there the execution order is well-defined. Scalachecked 1.5 & 1.6 support. No review.
* Added size maps to flat hash tables.Aleksandar Pokopec2010-11-081-2/+2
| | | | | | | | | | | Added parallel mutable hash sets. Implemented parallel mutable hash set iterators. Implemented parallel mutable hash set combiners. Factored out unrolled linked lists into a separate class UnrolledBuffer, added tests. Added parallel mutable hash set tests, and debugged hashsets. No review.
* Debugging parallel hash tables.Aleksandar Pokopec2010-10-281-0/+13
| | | | | No review.
* Updated link to collections API guide.Antonio Cunei2010-09-071-2/+2
|
* documentation for scala.collection package, con...Lukas Rytz2010-08-261-1/+68
| | | | | | documentation for scala.collection package, contribution by Dave Copeland. close #3793, no review.
* docs for breakout and no-arg apply in canbuildfromAdriaan Moors2010-05-071-1/+3
|
* added CanBuild type alias in package object sca...Adriaan Moors2009-11-101-0/+10
added CanBuild type alias in package object scala.collection.generic added breakout to scala.collection test for breakout