Scala 2.7.4.final API

This document is the API specification for Scala Library

Class Summary
abstract class BitSet extends Set[Int]
trait Map [A, +B] extends PartialFunction[A, B] with Collection[(A, B)]
trait MapProxy [A, +B] extends Map[A, B] with CollectionProxy[(A, B)]
This is a simple wrapper class for scala.collection.Map. It is most useful for assembling customized map abstractions dynamically using object composition and forwarding.
trait Ranged [K, +A] extends Iterable[A]
Any collection (including maps) whose keys (or elements) are ordered.
class RollbackIterator [+A](underlying : Iterator[A]) extends Default[A]
Rollback iterators are buffered iterators which allow for unbounded rollbacks
trait Set [A] extends (A) => Boolean with Collection[A]
trait SetProxy [A] extends Set[A] with IterableProxy[A]
This is a simple wrapper class for scala.collection.Set. It is most useful for assembling customized set abstractions dynamically using object composition and forwarding.
trait Sorted [K, +A] extends Ranged[K, A]
Any collection (including maps) whose keys (or elements) are ordered.
trait SortedMap [K, +E] extends Map[K, E] with Sorted[K, (K, E)]
A map whose keys are sorted.
trait SortedSet [A] extends Set[A] with Sorted[A, A]
Analogous to a Java sorted set.
Object Summary
object Map extends AnyRef