Packages

final class ConcurrentSet[A] extends AnyVal

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ConcurrentSet
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    Any
  2. final def ##(): Int
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    Any
  4. def add(x: A): UIO[Boolean]
  5. def addAll(xs: Iterable[A]): UIO[Boolean]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clear: UIO[Unit]
  8. def collectFirst[B](pf: PartialFunction[A, B]): UIO[Option[B]]
  9. def contains(x: A): UIO[Boolean]
  10. def containsAll(xs: Iterable[A]): UIO[Boolean]
  11. def exists(p: (A) ⇒ Boolean): UIO[Boolean]
  12. def find[B](p: (A) ⇒ Boolean): UIO[Option[A]]
  13. def fold[R, E, S](zero: S)(f: (S, A) ⇒ S): UIO[S]
  14. def forall(p: (A) ⇒ Boolean): UIO[Boolean]
  15. def getClass(): Class[_ <: AnyVal]
    Definition Classes
    AnyVal → Any
  16. def isEmpty: UIO[Boolean]
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def remove(x: A): UIO[Boolean]
  19. def removeAll(xs: Iterable[A]): UIO[Boolean]
  20. def removeIf(p: (A) ⇒ Boolean): UIO[Boolean]
  21. def retainAll(xs: Iterable[A]): UIO[Boolean]
  22. def retainIf(p: (A) ⇒ Boolean): UIO[Boolean]
  23. def size: UIO[Int]
  24. def toSet: UIO[Set[A]]
  25. def toString(): String
    Definition Classes
    Any
  26. def transform(f: (A) ⇒ A): UIO[Unit]
    Annotations
    @silent( "JavaConverters" )

Inherited from AnyVal

Inherited from Any

Ungrouped