Showing content from http://www.scala-lang.org/api/2.12.19/scala/collection/mutable/Set.html below:
Scala Standard Library 2.12.19 - scala.collection.mutable.Set
trait Set[A] extends Iterable[A] with collection.Set[A] with GenericSetTemplate[A, Set] with SetLike[A, Set[A]]
î· î
Ordering
- Alphabetic
- By Inheritance
Inherited
- Set
- SetLike
- Cloneable
- Cloneable
- Cloneable
- Shrinkable
- Builder
- Growable
- Clearable
- Scriptable
- Set
- SetLike
- Subtractable
- GenSet
- GenericSetTemplate
- GenSetLike
- Function1
- Iterable
- Iterable
- IterableLike
- Equals
- GenIterable
- GenIterableLike
- Traversable
- Mutable
- Traversable
- GenTraversable
- GenericTraversableTemplate
- TraversableLike
- GenTraversableLike
- Parallelizable
- TraversableOnce
- GenTraversableOnce
- FilterMonadic
- HasNewBuilder
- AnyRef
- Any
Implicitly
- by CollectionsHaveToParArray
- by MonadOps
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- by alternateImplicit
Abstract Value Members
- î
abstract def +=(elem: A): Set.this.type
- î
abstract def -=(elem: A): Set.this.type
- î
abstract def contains(elem: A): Boolean
- î
abstract def iterator: Iterator[A]
Concrete Value Members
- î
final def !=(arg0: Any): Boolean
- î
final def ##(): Int
- î
def &(that: GenSet[A]): Set[A]
- î
def &~(that: GenSet[A]): Set[A]
- î
def +(elem1: A, elem2: A, elems: A*): Set[A]
- î
def +(elem: A): Set[A]
- î
def ++(xs: GenTraversableOnce[A]): Set[A]
- î
def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Set[A], B, That]): That
- î
def ++:[B >: A, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[Set[A], B, That]): That
- î
def ++:[B](that: TraversableOnce[B]): Set[B]
- î
def ++=(xs: TraversableOnce[A]): Set.this.type
- î
def +=(elem1: A, elem2: A, elems: A*): Set.this.type
- î
def -(elem1: A, elem2: A, elems: A*): Set[A]
- î
def -(elem: A): Set[A]
- î
def --(xs: GenTraversableOnce[A]): Set[A]
- î
def --=(xs: TraversableOnce[A]): Set.this.type
- î
def -=(elem1: A, elem2: A, elems: A*): Set.this.type
- î
def ->[B](y: B): (Set[A], B)
- î
final def ==(arg0: Any): Boolean
- î
def add(elem: A): Boolean
- î
def addString(b: scala.StringBuilder): scala.StringBuilder
- î
def addString(b: scala.StringBuilder, sep: String): scala.StringBuilder
- î
def addString(b: scala.StringBuilder, start: String, sep: String, end: String): scala.StringBuilder
- î
def aggregate[B](z: â B)(seqop: (B, A) â B, combop: (B, B) â B): B
- î
def andThen[A](g: (Boolean) â A): (A) â A
- î
def apply(elem: A): Boolean
- î
final def asInstanceOf[T0]: T0
- î
def canEqual(that: Any): Boolean
- î
def clear(): Unit
- î
def clone(): Set[A]
- î
def collect[B](pf: PartialFunction[A, B]): Set[B]
- î
def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
- î
def companion: GenericCompanion[Set]
- î
def compose[A](g: (A) â A): (A) â Boolean
- î
def copyToArray(xs: Array[A], start: Int, len: Int): Unit
- î
def copyToArray(xs: Array[A]): Unit
- î
def copyToArray(xs: Array[A], start: Int): Unit
- î
def copyToBuffer[B >: A](dest: Buffer[B]): Unit
- î
def count(p: (A) â Boolean): Int
- î
def diff(that: GenSet[A]): Set[A]
- î
def drop(n: Int): Set[A]
- î
def dropRight(n: Int): Set[A]
- î
def dropWhile(p: (A) â Boolean): Set[A]
- î
def empty: Set[A]
- î
def ensuring(cond: (Set[A]) â Boolean, msg: â Any): Set[A]
- î
def ensuring(cond: (Set[A]) â Boolean): Set[A]
- î
def ensuring(cond: Boolean, msg: â Any): Set[A]
- î
def ensuring(cond: Boolean): Set[A]
- î
final def eq(arg0: AnyRef): Boolean
- î
def equals(that: Any): Boolean
- î
def exists(p: (A) â Boolean): Boolean
- î
def filter(p: (A) â Boolean): Set[A]
- î
def filterNot(p: (A) â Boolean): Set[A]
- î
def finalize(): Unit
- î
def find(p: (A) â Boolean): Option[A]
- î
def flatMap[B](f: (A) â GenTraversableOnce[B]): Set[B]
- î
def flatten[B]: Set[B]
- î
def fold[A1 >: A](z: A1)(op: (A1, A1) â A1): A1
- î
def foldLeft[B](z: B)(op: (B, A) â B): B
- î
def foldRight[B](z: B)(op: (A, B) â B): B
- î
def forall(p: (A) â Boolean): Boolean
- î
def foreach(f: (A) â Unit): Unit
- î
def genericBuilder[B]: Builder[B, Set[B]]
- î
final def getClass(): Class[_]
- î
def groupBy[K](f: (A) â K): immutable.Map[K, Set[A]]
- î
def grouped(size: Int): Iterator[Set[A]]
- î
def hasDefiniteSize: Boolean
- î
def hashCode(): Int
- î
def head: A
- î
def headOption: Option[A]
- î
def init: Set[A]
- î
def inits: Iterator[Set[A]]
- î
def intersect(that: GenSet[A]): Set[A]
- î
def isEmpty: Boolean
- î
final def isInstanceOf[T0]: Boolean
- î
final def isTraversableAgain: Boolean
- î
def last: A
- î
def lastOption: Option[A]
- î
def map[B](f: (A) â B): Set[B]
- î
def mapResult[NewTo](f: (Set[A]) â NewTo): Builder[A, NewTo]
- î
def max: A
- î
def maxBy[B](f: (A) â B): A
- î
def min: A
- î
def minBy[B](f: (A) â B): A
- î
def mkString: String
- î
def mkString(sep: String): String
- î
def mkString(start: String, sep: String, end: String): String
- î
final def ne(arg0: AnyRef): Boolean
- î
def newBuilder: Builder[A, Set[A]]
- î
def nonEmpty: Boolean
- î
final def notify(): Unit
- î
final def notifyAll(): Unit
- î
def par: ParSet[A]
- î
def parCombiner: Combiner[A, ParSet[A]]
- î
def partition(p: (A) â Boolean): (Set[A], Set[A])
- î
def product: A
- î
def reduce[A1 >: A](op: (A1, A1) â A1): A1
- î
def reduceLeft[B >: A](op: (B, A) â B): B
- î
def reduceLeftOption[B >: A](op: (B, A) â B): Option[B]
- î
def reduceOption[A1 >: A](op: (A1, A1) â A1): Option[A1]
- î
def reduceRight[B >: A](op: (A, B) â B): B
- î
def reduceRightOption[B >: A](op: (A, B) â B): Option[B]
- î
def remove(elem: A): Boolean
- î
def repr: Set[A]
- î
def result(): Set[A]
- î
def retain(p: (A) â Boolean): Unit
- î
def reversed: List[A]
- î
def sameElements(that: GenIterable[A]): Boolean
- î
def scan[B >: A, That](z: B)(op: (B, B) â B)(implicit cbf: CanBuildFrom[Set[A], B, That]): That
- î
def scanLeft[B, That](z: B)(op: (B, A) â B)(implicit bf: CanBuildFrom[Set[A], B, That]): That
- î
def scanRight[B, That](z: B)(op: (A, B) â B)(implicit bf: CanBuildFrom[Set[A], B, That]): That
- î
def seq: Set[A]
- î
def size: Int
- î
def sizeHint(coll: TraversableLike[_, _], delta: Int): Unit
- î
def sizeHint(coll: TraversableLike[_, _]): Unit
- î
def sizeHint(size: Int): Unit
- î
def sizeHintBounded(size: Int, boundingColl: TraversableLike[_, _]): Unit
- î
def sizeHintIfCheap: Int
- î
def slice(from: Int, until: Int): Set[A]
- î
def sliding(size: Int, step: Int): Iterator[Set[A]]
- î
def sliding(size: Int): Iterator[Set[A]]
- î
def span(p: (A) â Boolean): (Set[A], Set[A])
- î
def splitAt(n: Int): (Set[A], Set[A])
- î
def stringPrefix: String
- î
def subsetOf(that: GenSet[A]): Boolean
- î
def subsets(): Iterator[Set[A]]
- î
def subsets(len: Int): Iterator[Set[A]]
- î
def sum: A
- î
final def synchronized[T0](arg0: â T0): T0
- î
def tail: Set[A]
- î
def tails: Iterator[Set[A]]
- î
def take(n: Int): Set[A]
- î
def takeRight(n: Int): Set[A]
- î
def takeWhile(p: (A) â Boolean): Set[A]
- î
def thisCollection: collection.Iterable[A]
- î
def to[Col[_]]: Col[A]
- î
def toArray: Array[A]
- î
def toBuffer[A1 >: A]: Buffer[A1]
- î
def toCollection(repr: Set[A]): collection.Iterable[A]
- î
def toIndexedSeq: immutable.IndexedSeq[A]
- î
def toIterable: collection.Iterable[A]
- î
def toIterator: Iterator[A]
- î
def toList: List[A]
- î
def toMap[T, U]: collection.Map[T, U]
- î
def toParArray: ParArray[T]
- î
def toSeq: collection.Seq[A]
- î
def toSet[B >: A]: immutable.Set[B]
- î
def toStream: immutable.Stream[A]
- î
def toString(): String
- î
def toTraversable: collection.Traversable[A]
- î
def toVector: Vector[A]
- î
def transpose[B](implicit asTraversable: (A) â GenTraversableOnce[B]): Set[Set[B]]
- î
def union(that: GenSet[A]): Set[A]
- î
def unzip[A1, A2](implicit asPair: (A) â (A1, A2)): (Set[A1], Set[A2])
- î
def unzip3[A1, A2, A3](implicit asTriple: (A) â (A1, A2, A3)): (Set[A1], Set[A2], Set[A3])
- î
def update(elem: A, included: Boolean): Unit
- î
def view(from: Int, until: Int): IterableView[A, Set[A]]
- î
def view: IterableView[A, Set[A]]
- î
final def wait(): Unit
- î
final def wait(arg0: Long, arg1: Int): Unit
- î
final def wait(arg0: Long): Unit
- î
def withFilter(p: (A) â Boolean): FilterMonadic[A, Set[A]]
- î
def zip[B](that: GenIterable[B]): Set[(A, B)]
- î
def zipAll[B](that: collection.Iterable[B], thisElem: A, thatElem: B): Set[(A, B)]
- î
def zipWithIndex: Set[(A, Int)]
- î
def |(that: GenSet[A]): Set[A]
- î
def â[B](y: B): (Set[A], B)
Deprecated Value Members
- î
def /:[B](z: B)(op: (B, A) â B): B
- î
def :\[B](z: B)(op: (A, B) â B): B
- î
def <<(cmd: Message[A]): Unit
- î
def formatted(fmtstr: String): String
Inherited from java.lang.Cloneable
Inherited from HasNewBuilder[A, scala.collection.mutable.Set[A] @scala.annotation.unchecked.uncheckedVariance] Inherited by implicit conversion MonadOps from Set[A] to MonadOps[A] Inherited by implicit conversion Ensuring from Set[A] to Ensuring[Set[A]]
RetroSearch is an open source project built by @garambo
| Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4