Skip to content
Snippets Groups Projects
Commit fb3de75a authored by Philippe Suter's avatar Philippe Suter
Browse files

forgot the sources :D

parent 7e9ef789
No related branches found
No related tags found
No related merge requests found
package scala.collection.immutable
case class UnimplementedFeatureException() extends Exception
object Multiset {
def empty[A] : Multiset[A] = throw UnimplementedFeatureException()
def apply[A](elems: A*) : Multiset[A] = throw UnimplementedFeatureException()
}
trait Multiset[A] {
def ** (that: Multiset[A]) : Multiset[A] = throw UnimplementedFeatureException()
def ++ (that: Multiset[A]) : Multiset[A] = throw UnimplementedFeatureException()
def +++ (that: Multiset[A]) : Multiset[A] = throw UnimplementedFeatureException()
def -- (that: Multiset[A]) : Multiset[A] = throw UnimplementedFeatureException()
def toSet : scala.collection.immutable.Set[A] = throw UnimplementedFeatureException()
def size : Int = throw UnimplementedFeatureException()
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment