com.twitter.util

MapToSetAdapter

class MapToSetAdapter [A] extends Set[A]

linear super types: Set[A], SetLike[A, Set[A]], Cloneable[Set[A]], Shrinkable[A], Builder[A, Set[A]], Growable[A], Scriptable[A], Set[A], SetLike[A, Set[A]], Subtractable[A, Set[A]], Addable[A, Set[A]], GenericSetTemplate[A, Set], (A) ⇒ Boolean, Iterable[A], Iterable[A], IterableLike[A, Set[A]], Equals, Traversable[A], Mutable, Traversable[A], GenericTraversableTemplate[A, Set], TraversableLike[A, Set[A]], TraversableOnce[A], FilterMonadic[A, Set[A]], HasNewBuilder[A, Set[A]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. MapToSetAdapter
  2. Set
  3. SetLike
  4. Cloneable
  5. Shrinkable
  6. Builder
  7. Growable
  8. Scriptable
  9. Set
  10. SetLike
  11. Subtractable
  12. Addable
  13. GenericSetTemplate
  14. Function1
  15. Iterable
  16. Iterable
  17. IterableLike
  18. Equals
  19. Traversable
  20. Mutable
  21. Traversable
  22. GenericTraversableTemplate
  23. TraversableLike
  24. TraversableOnce
  25. FilterMonadic
  26. HasNewBuilder
  27. AnyRef
  28. Any
Visibility
  1. Public
  2. All
Impl.
  1. Concrete
  2. Abstract

Instance constructors

  1. new MapToSetAdapter (map: Map[A, A])

Type Members

  1. type Self = Set[A]

    attributes: protected
    definition classes: TraversableLike

Value Members

  1. def != (arg0: AnyRef) : Boolean

    attributes: final
    definition classes: AnyRef
  2. def != (arg0: Any) : Boolean

    o != arg0 is the same as !(o == (arg0)).

    o != arg0 is the same as !(o == (arg0)).

    arg0

    the object to compare against this object for dis-equality.

    returns

    false if the receiver object is equivalent to the argument; true otherwise.

    attributes: final
    definition classes: Any
  3. def ## () : Int

    attributes: final
    definition classes: AnyRef → Any
  4. def $asInstanceOf [T0] () : T0

    attributes: final
    definition classes: AnyRef
  5. def $isInstanceOf [T0] () : Boolean

    attributes: final
    definition classes: AnyRef
  6. def & (that: Set[A]) : Set[A]

    definition classes: SetLike
  7. def &~ (that: Set[A]) : Set[A]

    definition classes: SetLike
  8. def ** (that: Set[A]) : Set[A]

    definition classes: SetLike
      deprecated:
    1. use & instead

  9. def + (elem1: A, elem2: A, elems: A*) : Set[A]

    definition classes: SetLike → Addable
  10. def + (elem: A) : Set[A]

    definition classes: SetLike → SetLike → Addable
  11. def ++ (xs: TraversableOnce[A]) : Set[A]

    definition classes: SetLike → Addable
  12. def ++ [B >: A, That] (that: TraversableOnce[B])(implicit bf: CanBuildFrom[Set[A], B, That]) : That

    definition classes: TraversableLike
  13. def ++= (xs: TraversableOnce[A]) : MapToSetAdapter.this.type

    definition classes: Growable
  14. def += (elem: A) : MapToSetAdapter.this.type

    definition classes: MapToSetAdapter → SetLike → Builder → Growable
  15. def += (elem1: A, elem2: A, elems: A*) : MapToSetAdapter.this.type

    definition classes: Growable
  16. def - (elem1: A, elem2: A, elems: A*) : Set[A]

    definition classes: SetLike → Subtractable
  17. def - (elem: A) : Set[A]

    definition classes: SetLike → SetLike → Subtractable
  18. def -- (xs: TraversableOnce[A]) : Set[A]

    definition classes: SetLike → Subtractable
  19. def --= (xs: TraversableOnce[A]) : MapToSetAdapter.this.type

    definition classes: Shrinkable
  20. def -= (elem: A) : MapToSetAdapter.this.type

    definition classes: MapToSetAdapter → SetLike → Shrinkable
  21. def -= (elem1: A, elem2: A, elems: A*) : MapToSetAdapter.this.type

    definition classes: Shrinkable
  22. def /: [B] (z: B)(op: (B, A) ⇒ B) : B

    definition classes: TraversableOnce
  23. def :\ [B] (z: B)(op: (A, B) ⇒ B) : B

    definition classes: TraversableOnce
  24. def << (cmd: Message[A]) : Unit

    definition classes: SetLike → Scriptable
  25. def == (arg0: AnyRef) : Boolean

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    o == arg0 is the same as if (o eq null) arg0 eq null else o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: AnyRef
  26. def == (arg0: Any) : Boolean

    o == arg0 is the same as o.equals(arg0).

    o == arg0 is the same as o.equals(arg0).

    arg0

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    attributes: final
    definition classes: Any
  27. def add (elem: A) : Boolean

    definition classes: SetLike
  28. def addString (b: StringBuilder) : StringBuilder

    definition classes: TraversableOnce
  29. def addString (b: StringBuilder, sep: String) : StringBuilder

    definition classes: TraversableOnce
  30. def addString (b: StringBuilder, start: String, sep: String, end: String) : StringBuilder

    definition classes: TraversableOnce
  31. def andThen [A] (g: (Boolean) ⇒ A) : (A) ⇒ A

    definition classes: Function1
  32. def apply (elem: A) : Boolean

    definition classes: SetLike
  33. def asInstanceOf [T0] : T0

    This method is used to cast the receiver object to be of type T0.

    This method is used to cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expressionList(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    the receiver object.

    attributes: final
    definition classes: Any
  34. def canEqual (that: Any) : Boolean

    definition classes: IterableLike → Equals
  35. def clear () : Unit

    definition classes: SetLike → Builder → Growable
  36. def clone () : Set[A]

    This method creates and returns a copy of the receiver object.

    This method creates and returns a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    definition classes: SetLike → Cloneable → AnyRef
  37. def collect [B, That] (pf: PartialFunction[A, B])(implicit bf: CanBuildFrom[Set[A], B, That]) : That

    definition classes: TraversableLike
  38. def companion : GenericCompanion[Set]

    definition classes: Set → Set → Iterable → Iterable → Traversable → Traversable → GenericTraversableTemplate
  39. def compose [A] (g: (A) ⇒ A) : (A) ⇒ Boolean

    definition classes: Function1
  40. def contains (elem: A) : Boolean

    definition classes: MapToSetAdapter → SetLike
  41. def copyToArray [B >: A] (xs: Array[B], start: Int, len: Int) : Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce
  42. def copyToArray [B >: A] (xs: Array[B]) : Unit

    definition classes: TraversableOnce
  43. def copyToArray [B >: A] (xs: Array[B], start: Int) : Unit

    definition classes: TraversableOnce
  44. def copyToBuffer [B >: A] (dest: Buffer[B]) : Unit

    definition classes: TraversableOnce
  45. def count (p: (A) ⇒ Boolean) : Int

    definition classes: TraversableOnce
  46. def diff (that: Set[A]) : Set[A]

    definition classes: SetLike
  47. def drop (n: Int) : Set[A]

    definition classes: TraversableLike
  48. def dropRight (n: Int) : Set[A]

    definition classes: IterableLike
  49. def dropWhile (p: (A) ⇒ Boolean) : Set[A]

    definition classes: TraversableLike
  50. def elements : Iterator[A]

    definition classes: IterableLike
      deprecated:
    1. use iterator' instead

  51. def empty : Set[A]

    definition classes: GenericSetTemplate
  52. def eq (arg0: AnyRef) : Boolean

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    This method is used to test whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation] on non-null instances of AnyRef: * It is reflexive: for any non-null instance x of type AnyRef, x.eq(x) returns true. * It is symmetric: for any non-null instances x and y of type AnyRef, x.eq(y) returns true if and only if y.eq(x) returns true. * It is transitive: for any non-null instances x, y, and z of type AnyRef if x.eq(y) returns true and y.eq(z) returns true, then x.eq(z) returns true.

    Additionally, the eq method has three other properties. * It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false. * For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false. * null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    arg0

    the object to compare against this object for reference equality.

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    attributes: final
    definition classes: AnyRef
  53. def equals (that: Any) : Boolean

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    This method is used to compare the receiver object (this) with the argument object (arg0) for equivalence.

    The default implementations of this method is an [http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation]: * It is reflexive: for any instance x of type Any, x.equals(x) should return true. * It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true. * It is transitive: for any instances x, y, and z of type AnyRef if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

    If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is often necessary to override hashCode to ensure that objects that are "equal" (o1.equals(o2) returns true) hash to the same scala.Int (o1.hashCode.equals(o2.hashCode)).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    definition classes: SetLike → Equals → AnyRef → Any
  54. def exists (p: (A) ⇒ Boolean) : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  55. def filter (p: (A) ⇒ Boolean) : Set[A]

    definition classes: TraversableLike
  56. def filterNot (p: (A) ⇒ Boolean) : Set[A]

    definition classes: TraversableLike
  57. def finalize () : Unit

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    This method is called by the garbage collector on the receiver object when garbage collection determines that there are no more references to the object.

    The details of when and if the finalize method are invoked, as well as the interaction between finalizeand non-local returns and exceptions, are all platform dependent.

    attributes: protected
    definition classes: AnyRef
  58. def find (p: (A) ⇒ Boolean) : Option[A]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  59. def first : A

    definition classes: IterableLike
      deprecated:
    1. use head' instead

  60. def firstOption : Option[A]

    definition classes: IterableLike
      deprecated:
    1. use headOption' instead

  61. def flatMap [B, That] (f: (A) ⇒ Traversable[B])(implicit bf: CanBuildFrom[Set[A], B, That]) : That

    definition classes: TraversableLike → FilterMonadic
  62. def flatten [B] (implicit asTraversable: (A) ⇒ Traversable[B]) : Set[B]

    definition classes: GenericTraversableTemplate
  63. def foldLeft [B] (z: B)(op: (B, A) ⇒ B) : B

    definition classes: TraversableOnce
  64. def foldRight [B] (z: B)(op: (A, B) ⇒ B) : B

    definition classes: IterableLike → TraversableOnce
  65. def forall (p: (A) ⇒ Boolean) : Boolean

    definition classes: IterableLike → TraversableLike → TraversableOnce
  66. def foreach [U] (f: (A) ⇒ U) : Unit

    definition classes: IterableLike → TraversableLike → TraversableOnce → FilterMonadic
  67. def genericBuilder [B] : Builder[B, Set[B]]

    definition classes: GenericTraversableTemplate
  68. def getClass () : java.lang.Class[_]

    Returns a representation that corresponds to the dynamic class of the receiver object.

    Returns a representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    attributes: final
    definition classes: AnyRef
  69. def groupBy [K] (f: (A) ⇒ K) : Map[K, Set[A]]

    definition classes: TraversableLike
  70. def grouped (size: Int) : Iterator[Set[A]]

    definition classes: IterableLike
  71. def hasDefiniteSize : Boolean

    definition classes: TraversableLike → TraversableOnce
  72. def hashCode () : Int

    Returns a hash code value for the object.

    Returns a hash code value for the object.

    The default hashing algorithm is platform dependent.

    Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

    returns

    the hash code value for the object.

    definition classes: SetLike → AnyRef → Any
  73. def head : A

    definition classes: IterableLike → TraversableLike
  74. def headOption : Option[A]

    definition classes: TraversableLike
  75. def init : Set[A]

    definition classes: TraversableLike
  76. def intersect (that: Set[A]) : Set[A]

    definition classes: SetLike
  77. def isEmpty : Boolean

    definition classes: SetLike → IterableLike → TraversableLike → TraversableOnce
  78. def isInstanceOf [T0] : Boolean

    This method is used to test whether the dynamic type of the receiver object is T0.

    This method is used to test whether the dynamic type of the receiver object is T0.

    Note that the test result of the test is modulo Scala's erasure semantics. Therefore the expression1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested typed.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    attributes: final
    definition classes: Any
  79. def isTraversableAgain : Boolean

    attributes: final
    definition classes: TraversableLike → TraversableOnce
  80. def iterator : Iterator[A]

    definition classes: MapToSetAdapter → IterableLike
  81. def last : A

    definition classes: TraversableLike
  82. def lastOption : Option[A]

    definition classes: TraversableLike
  83. def map [B, That] (f: (A) ⇒ B)(implicit bf: CanBuildFrom[Set[A], B, That]) : That

    definition classes: SetLike → TraversableLike → FilterMonadic
  84. def mapResult [NewTo] (f: (Set[A]) ⇒ NewTo) : Builder[A, NewTo]

    definition classes: Builder
  85. def max [B >: A] (implicit cmp: Ordering[B]) : A

    definition classes: TraversableOnce
  86. def min [B >: A] (implicit cmp: Ordering[B]) : A

    definition classes: TraversableOnce
  87. def mkString : String

    definition classes: TraversableOnce
  88. def mkString (sep: String) : String

    definition classes: TraversableOnce
  89. def mkString (start: String, sep: String, end: String) : String

    definition classes: TraversableOnce
  90. def ne (arg0: AnyRef) : Boolean

    o.ne(arg0) is the same as !(o.eq(arg0)).

    o.ne(arg0) is the same as !(o.eq(arg0)).

    arg0

    the object to compare against this object for reference dis-equality.

    returns

    false if the argument is not a reference to the receiver object; true otherwise.

    attributes: final
    definition classes: AnyRef
  91. def newBuilder : Builder[A, Set[A]]

    attributes: protected[this]
    definition classes: SetLike → SetLike → TraversableLike → HasNewBuilder
  92. def nonEmpty : Boolean

    definition classes: TraversableOnce
  93. def notify () : Unit

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  94. def notifyAll () : Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    attributes: final
    definition classes: AnyRef
  95. def partition (p: (A) ⇒ Boolean) : (Set[A], Set[A])

    definition classes: TraversableLike
  96. def product [B >: A] (implicit num: Numeric[B]) : B

    definition classes: TraversableOnce
  97. def projection : IterableView[A, Set[A]]

    definition classes: IterableLike
      deprecated:
    1. use view' instead

  98. def reduceLeft [B >: A] (op: (B, A) ⇒ B) : B

    definition classes: TraversableOnce
  99. def reduceLeftOption [B >: A] (op: (B, A) ⇒ B) : Option[B]

    definition classes: TraversableOnce
  100. def reduceRight [B >: A] (op: (A, B) ⇒ B) : B

    definition classes: IterableLike → TraversableOnce
  101. def reduceRightOption [B >: A] (op: (A, B) ⇒ B) : Option[B]

    definition classes: TraversableOnce
  102. def remove (elem: A) : Boolean

    definition classes: SetLike
  103. def repr : Set[A]

    definition classes: TraversableLike
  104. def result () : Set[A]

    definition classes: SetLike → Builder
  105. def retain (p: (A) ⇒ Boolean) : Unit

    definition classes: SetLike
  106. def reversed : List[A]

    attributes: protected[this]
    definition classes: TraversableOnce
  107. def sameElements [B >: A] (that: Iterable[B]) : Boolean

    definition classes: IterableLike
  108. def scanLeft [B, That] (z: B)(op: (B, A) ⇒ B)(implicit bf: CanBuildFrom[Set[A], B, That]) : That

    definition classes: TraversableLike
  109. def scanRight [B, That] (z: B)(op: (A, B) ⇒ B)(implicit bf: CanBuildFrom[Set[A], B, That]) : That

    definition classes: TraversableLike
  110. def size : Int

    definition classes: MapToSetAdapter → TraversableOnce
  111. def sizeHint (coll: scala.collection.TraversableLike[_, _], delta: Int) : Unit

    definition classes: Builder
  112. def sizeHint (size: Int) : Unit

    definition classes: Builder
  113. def sizeHintBounded (size: Int, boundingColl: scala.collection.TraversableLike[_, _]) : Unit

    definition classes: Builder
  114. def slice (from: Int, until: Int) : Set[A]

    definition classes: IterableLike → TraversableLike
  115. def sliding [B >: A] (size: Int, step: Int) : Iterator[Set[A]]

    definition classes: IterableLike
  116. def sliding [B >: A] (size: Int) : Iterator[Set[A]]

    definition classes: IterableLike
  117. def span (p: (A) ⇒ Boolean) : (Set[A], Set[A])

    definition classes: TraversableLike
  118. def splitAt (n: Int) : (Set[A], Set[A])

    definition classes: TraversableLike
  119. def stringPrefix : String

    definition classes: SetLike → TraversableLike
  120. def subsetOf (that: Set[A]) : Boolean

    definition classes: SetLike
  121. def sum [B >: A] (implicit num: Numeric[B]) : B

    definition classes: TraversableOnce
  122. def synchronized [T0] (arg0: T0) : T0

    attributes: final
    definition classes: AnyRef
  123. def tail : Set[A]

    definition classes: TraversableLike
  124. def take (n: Int) : Set[A]

    definition classes: IterableLike → TraversableLike
  125. def takeRight (n: Int) : Set[A]

    definition classes: IterableLike
  126. def takeWhile (p: (A) ⇒ Boolean) : Set[A]

    definition classes: IterableLike → TraversableLike
  127. def thisCollection : Iterable[A]

    attributes: protected[this]
    definition classes: IterableLike → TraversableLike
  128. def toArray [B >: A] (implicit arg0: ClassManifest[B]) : Array[B]

    definition classes: TraversableOnce
  129. def toBuffer [B >: A] : Buffer[B]

    definition classes: TraversableOnce
  130. def toCollection (repr: Set[A]) : Iterable[A]

    attributes: protected[this]
    definition classes: IterableLike → TraversableLike
  131. def toIndexedSeq [B >: A] : IndexedSeq[B]

    definition classes: TraversableOnce
  132. def toIterable : Iterable[A]

    definition classes: IterableLike → TraversableOnce
  133. def toIterator : Iterator[A]

    definition classes: TraversableLike → TraversableOnce
  134. def toList : List[A]

    definition classes: TraversableOnce
  135. def toMap [T, U] (implicit ev: <:<[A, (T, U)]) : Map[T, U]

    definition classes: TraversableOnce
  136. def toSeq : Seq[A]

    definition classes: IterableLike → TraversableOnce
  137. def toSet [B >: A] : Set[B]

    definition classes: TraversableOnce
  138. def toStream : Stream[A]

    definition classes: IterableLike → TraversableLike → TraversableOnce
  139. def toString () : String

    Returns a string representation of the object.

    Returns a string representation of the object.

    The default representation is platform dependent.

    returns

    a string representation of the object.

    definition classes: SetLike → TraversableLike → AnyRef → Any
  140. def toTraversable : Traversable[A]

    definition classes: TraversableLike → TraversableOnce
  141. def transpose [B] (implicit asTraversable: (A) ⇒ Traversable[B]) : Set[Set[B]]

    definition classes: GenericTraversableTemplate
  142. def union (that: Set[A]) : Set[A]

    definition classes: SetLike
  143. def unzip [A1, A2] (implicit asPair: (A) ⇒ (A1, A2)) : (Set[A1], Set[A2])

    definition classes: GenericTraversableTemplate
  144. def update (elem: A, included: Boolean) : Unit

    definition classes: SetLike
  145. def view (from: Int, until: Int) : IterableView[A, Set[A]]

    definition classes: IterableLike → TraversableLike
  146. def view : IterableView[A, Set[A]]

    definition classes: IterableLike → TraversableLike
  147. def wait () : Unit

    attributes: final
    definition classes: AnyRef
  148. def wait (arg0: Long, arg1: Int) : Unit

    attributes: final
    definition classes: AnyRef
  149. def wait (arg0: Long) : Unit

    attributes: final
    definition classes: AnyRef
  150. def withFilter (p: (A) ⇒ Boolean) : FilterMonadic[A, Set[A]]

    definition classes: TraversableLike → FilterMonadic
  151. def zip [A1 >: A, B, That] (that: Iterable[B])(implicit bf: CanBuildFrom[Set[A], (A1, B), That]) : That

    definition classes: IterableLike
  152. def zipAll [B, A1 >: A, That] (that: Iterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[Set[A], (A1, B), That]) : That

    definition classes: IterableLike
  153. def zipWithIndex [A1 >: A, That] (implicit bf: CanBuildFrom[Set[A], (A1, Int), That]) : That

    definition classes: IterableLike
  154. def | (that: Set[A]) : Set[A]

    definition classes: SetLike

Inherited from Set[A]

Inherited from SetLike[A, Set[A]]

Inherited from Cloneable[Set[A]]

Inherited from Shrinkable[A]

Inherited from Builder[A, Set[A]]

Inherited from Growable[A]

Inherited from Scriptable[A]

Inherited from Set[A]

Inherited from SetLike[A, Set[A]]

Inherited from Subtractable[A, Set[A]]

Inherited from Addable[A, Set[A]]

Inherited from GenericSetTemplate[A, Set]

Inherited from (A) ⇒ Boolean

Inherited from Iterable[A]

Inherited from Iterable[A]

Inherited from IterableLike[A, Set[A]]

Inherited from Equals

Inherited from Traversable[A]

Inherited from Mutable

Inherited from Traversable[A]

Inherited from GenericTraversableTemplate[A, Set]

Inherited from TraversableLike[A, Set[A]]

Inherited from TraversableOnce[A]

Inherited from FilterMonadic[A, Set[A]]

Inherited from HasNewBuilder[A, Set[A]]

Inherited from AnyRef

Inherited from Any