Scalax
|
|
scalax/control/ConcurrentHashSet.scala
]
class
ConcurrentHashSet[A](val
jmap : java.util.concurrent.ConcurrentHashMap[A, scala.List[Any]])
extends
scala.collection.mutable.Set[A]Additional Constructor Summary | |
def
|
this : ConcurrentHashSet[A] |
Method Summary | |
def
|
+= (elem : A) : Unit |
def
|
-= (elem : A) : Unit |
override def
|
clear : Unit |
override def
|
clone
: scala.collection.mutable.Set[A]
This method creates and returns a copy of the receiver object.
|
def
|
contains (elem : A) : Boolean |
def
|
elements : scala.Iterator[A] |
override def
|
isEmpty : Boolean |
def
|
size : Int |
def
|
testAndAdd (elem : A) : Boolean |
def
|
testAndRemove (elem : A) : Boolean |
Methods inherited from scala.Collection | |
scala.Collection.toString |
Methods inherited from scala.Function1 | |
scala.Function1.compose, scala.Function1.andThen |
Methods inherited from AnyRef | |
getClass, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Additional Constructor Details |
Method Details |
override
def
clear : Unit
override
def
clone : scala.collection.mutable.Set[A]
The default implementation of the clone
method is platform dependent.
def
elements : scala.Iterator[A]
override
def
isEmpty : Boolean
def
size : Int
Scalax
|
|