final class ConcurrentSet[A] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ConcurrentSet
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
- def add(x: A): UIO[Boolean]
- def addAll(xs: Iterable[A]): UIO[Boolean]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clear: UIO[Unit]
- def collectFirst[B](pf: PartialFunction[A, B]): UIO[Option[B]]
- def contains(x: A): UIO[Boolean]
- def containsAll(xs: Iterable[A]): UIO[Boolean]
- def exists(p: (A) ⇒ Boolean): UIO[Boolean]
- def find[B](p: (A) ⇒ Boolean): UIO[Option[A]]
- def fold[R, E, S](zero: S)(f: (S, A) ⇒ S): UIO[S]
- def forall(p: (A) ⇒ Boolean): UIO[Boolean]
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- def isEmpty: UIO[Boolean]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def remove(x: A): UIO[Boolean]
- def removeAll(xs: Iterable[A]): UIO[Boolean]
- def removeIf(p: (A) ⇒ Boolean): UIO[Boolean]
- def retainAll(xs: Iterable[A]): UIO[Boolean]
- def retainIf(p: (A) ⇒ Boolean): UIO[Boolean]
- def size: UIO[Int]
- def toSet: UIO[Set[A]]
-
def
toString(): String
- Definition Classes
- Any
-
def
transform(f: (A) ⇒ A): UIO[Unit]
- Annotations
- @silent( "JavaConverters" )