summaryrefslogtreecommitdiff
path: root/src/library
Commit message (Collapse)AuthorAgeFilesLines
* better NodeSeqBurak Emir2006-03-141-2/+2
|
* added a toArray method to Seq.Martin Odersky2006-03-133-20/+11
|
* Bug fixesMartin Odersky2006-03-111-0/+13
|
* (no commit message)Martin Odersky2006-03-1047-57/+57
|
* Reintroduced the toList method for efficiencymihaylov2006-03-101-5/+5
|
* performed some renamings in the compiler & libraryMartin Odersky2006-03-0935-83/+62
| | | | | | | All -> Bottom AllRef -> Null mixin class -> trait
* made the view method implicitmihaylov2006-03-091-15/+16
|
* fixed names of view methodsBurak Emir2006-03-091-2/+2
|
* fixed names of view methodsBurak Emir2006-03-091-2/+1
|
* fixed names of view methodsBurak Emir2006-03-098-27/+27
|
* Code cleanupmihaylov2006-03-093-74/+69
|
* fix arrays some more.Martin Odersky2006-03-0914-221/+342
|
* Torned is/asInstanceOf to isAsInstanceOfmihaylov2006-03-082-7/+3
|
* Uncommented the private[scala] access modifier ...mihaylov2006-03-081-2/+1
| | | | | | Uncommented the private[scala] access modifier of class ::'s constructor paremeter
* Removed unnecessary filesmihaylov2006-03-072-113/+0
|
* added attribute 'remote' to method '$tag' in sc...michelou2006-03-071-2/+3
| | | | | added attribute 'remote' to method '$tag' in scala.ScalaObject
* fixed compilation problemmihaylov2006-03-052-2/+2
|
* Rearranged header and updated copyright infomihaylov2006-03-05162-222/+1100
|
* Remove files that were not required for compila...Gilles Dubochet2006-03-0314-1033/+0
| | | | | | Remove files that were not required for compilation. Clean ignore patterns.
* Small refactoring in some collection classesmihaylov2006-03-0318-52/+36
|
* Use 'mixin class' instead of 'trait'mihaylov2006-03-0396-174/+183
|
* Rearranged header and updated copyright messagemihaylov2006-03-02176-281/+787
|
* improved error message for missing keymihaylov2006-03-011-3/+3
|
* adapted code to Scala 2 syntax in files src/exa...michelou2006-02-221-40/+40
| | | | | adapted code to Scala 2 syntax in files src/examples/**/*.scala
* Turned TIMEOUT into a case object.mihaylov2006-02-212-3/+3
|
* corrected lastIndexOf parameter in file scala/r...michelou2006-02-171-3/+5
| | | | | corrected lastIndexOf parameter in file scala/reflect/Symbol.scala
* fix^2: import Predef._ in reflect.{Symbol, Type...Martin Odersky2006-02-172-0/+4
| | | | | fix^2: import Predef._ in reflect.{Symbol, Type} to get things to recompile.
* (no commit message)Martin Odersky2006-02-1712-0/+31
|
* changed handling of MatchError, prints string nowBurak Emir2006-02-141-0/+3
|
* Expanded Codification to support loops, conditi...Gilles Dubochet2006-02-143-13/+30
| | | | | | | Expanded Codification to support loops, conditions and assignation. Assignation is known to be highly instable and will change in the future: use at your own risks.
* An attribute that designates variable's accesso...mihaylov2006-02-101-0/+3
| | | | | | An attribute that designates variable's accessors names as Java Beans compliant
* (no commit message)Martin Odersky2006-02-093-27/+2
|
* (no commit message)Martin Odersky2006-02-066-4/+32
|
* Fixed typos in a couple of commentsLex Spoon2006-02-032-2/+2
|
* (no commit message)Martin Odersky2006-01-302-3/+23
|
* Move the implicit BitSet=>Ordered[BitSet] coerc...mihaylov2006-01-262-34/+31
| | | | | | Move the implicit BitSet=>Ordered[BitSet] coercion to automata/SubsetConstruction, where it is used
* Added a deep-copy clone methodmihaylov2006-01-261-0/+6
|
* - improved efficiencymihaylov2006-01-251-13/+20
| | | | | - fixed a bug in the handling of size
* Added a fast subsetOf implementationmihaylov2006-01-251-3/+35
|
* Adjusted to the new interface of BitSetmihaylov2006-01-224-25/+20
|
* Complete rewrite:mihaylov2006-01-223-187/+138
| | | | | | | | | | | - uses directly Array[Int] instead of ResizableArray; the latter is polymorphic and uses boxed arrays - implement collection.BitSet and collection.mutable.BitSet as subclasses of collection.Set and collection.mutable.Set respectively with the corresponding change in the interface - collection.immutable.BitSet is likely to disappear because its semantics is subsumed by collection.BitSet.
* added min(x: Int, y: Int): Int functionmihaylov2006-01-221-0/+1
|
* use the serializable attribute instead of java....mihaylov2006-01-221-2/+2
| | | | | use the serializable attribute instead of java.io.Serializable
* (no commit message)Martin Odersky2006-01-203-4/+16
|
* Improved TypedCode to support yet more code.Gilles Dubochet2006-01-202-1/+3
|
* - removed tabs in scala/concurrent/Process.scalamichelou2006-01-191-52/+57
|
* use toList instead of elements.toListmihaylov2006-01-191-1/+1
|
* Use attributes instead of java.lang.Cloneable, ...mihaylov2006-01-195-14/+19
| | | | | Use attributes instead of java.lang.Cloneable, java.io.Serializable
* Fixed conflicting self in scala.concurrent.Proc...Philipp Haller2006-01-191-1/+1
| | | | | Fixed conflicting self in scala.concurrent.Process.
* Added process identifiers (class Pid) to thread...Philipp Haller2006-01-192-0/+48
| | | | | Added process identifiers (class Pid) to thread-based actors.