summaryrefslogtreecommitdiff
path: root/test/files/run/bitsets.check
Commit message (Collapse)AuthorAgeFilesLines
* Reduce deprecations and warningsSimon Ochsenreither2016-08-021-1/+1
|
* Add since arg to deprecationWarning and use itSimon Ochsenreither2016-05-291-1/+1
|
* SI-7770 mutable.BitSet.toImmutable isn't immutableDenton Cockburn2015-01-071-0/+1
| | | | | Mark method as deprecated due to it not providing the expected result, while fixing it will break existing code.
* Disabled failing bitset test.Paul Phillips2013-04-231-4/+0
| | | | | | | It's a couple orders of magnitude out of whack when a test demands a gigabyte of memory to pass. We might need to start collecting per-test stats to avoid this kind of thing in the future. It's a huge waste of time.
* SI-7080 improve boundary value checking for BitSetHeejong Lee2013-04-071-0/+4
| | | | | | | | | | | | | | | | When BitSet accepts a very large integer such as Int.MaxValue, integer overflow possibly occurs in the calculation of boundary value "nwords * WordLength". This faulty boundary condition causes empty-iterator problem like following: scala> import collection.mutable.BitSet import collection.mutable.BitSet scala> val x = BitSet(Int.MaxValue) x: scala.collection.mutable.BitSet = BitSet() scala> x.iterator res0: Iterator[Int] = empty iterator
* SI-5513: add inplace set-theoretic operations for mutable bitsets.Eugene Vigdorchik2013-03-111-0/+5
|
* Improved BitSet implementationsStefan Zeiger2011-12-011-0/+46
| | | | | | | | | | | | | | - Mutable and immutable BitSets now extend SortedSet, using a fixed Ordering.Int and an efficient bit mask based rangeImpl() - fromArray methods in both implementations are deprecated in favor of new fromBitMask and fromBitMaskNoCopy methods - New toBitMask method for converting bit sets back to Array[Long] bit masks - immutable.BitSet uses a more efficient Builder, based on mutable.BitSet (closes SI-4647) - Delete scala.tools.nsc.util.BitSet (not used anywhere) Review by @odersky
* fixed #2428 for good.Martin Odersky2009-10-231-10/+10
|
* Organized disabled directory so it works with p...Paul Phillips2009-05-091-0/+33
| | | | | | | Organized disabled directory so it works with partest. You can run ./partest --srcpath disabled to run the tests in that location. Fixed a few tests in disabled and pending and moved to files.
* massive new collections checkin.Martin Odersky2009-05-081-33/+0
|
* Got rid of warningsSean McDirmid2007-03-301-22/+0
|
* Fixing the build (toString() issues in the comp...Sean McDirmid2007-03-301-0/+22
| | | | | | Fixing the build (toString() issues in the compiler) and the test suite (toString() issues, spacing issues, and some stringPrefix issues)
* fixed check file for run/bitsets.scalamichelou2007-03-081-2/+5
|
* added more test cases for class BitSetmichelou2007-03-081-7/+28
|
* fixed 2 bugs in classs BitSet and added scalado...michelou2007-03-071-0/+9
fixed 2 bugs in classs BitSet and added scaladoc comment methods isInstanceOf and synchronized