Packages

class SortedMultiSet[A] extends collection.SortedMultiSet[A] with Iterable[A] with SortedMultiSetOps[A, SortedMultiSet, SortedMultiSet[A]] with IterableOps[A, MultiSet, SortedMultiSet[A]]

An immutable multiset whose elements are sorted.

A

Type of elements

Linear Supertypes
Iterable[A], collection.SortedMultiSet[A], SortedMultiSetOps[A, SortedMultiSet, SortedMultiSet[A]], SortedOps[A, SortedMultiSet[A]], collection.MultiSet[A], Equals, MultiSetOps[A, collection.MultiSet, SortedMultiSet[A]], collection.Iterable[A], collection.Traversable[A], IterableOps[A, MultiSet, SortedMultiSet[A]], IterableOnce[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SortedMultiSet
  2. Iterable
  3. SortedMultiSet
  4. SortedMultiSetOps
  5. SortedOps
  6. MultiSet
  7. Equals
  8. MultiSetOps
  9. Iterable
  10. Traversable
  11. IterableOps
  12. IterableOnce
  13. AnyRef
  14. Any
Implicitly
  1. by toLazyZipOps
  2. by iterableOnceExtensionMethods
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class SortedWithFilter extends WithFilter

    Specialize WithFilter for sorted collections

    Specialize WithFilter for sorted collections

    Definition Classes
    SortedMultiSetOps
  2. class WithFilter extends collection.WithFilter[A, CC]
    Definition Classes
    IterableOps

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def +(elem: A): SortedMultiSet[A]

    Alias for incl

    Alias for incl

    Annotations
    @inline()
  4. final def ++[B >: A](suffix: collection.Iterable[B]): MultiSet[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. final def -(elem: A): SortedMultiSet[A]

    Alias for excl

    Alias for excl

    Annotations
    @inline()
  6. def ->[B](y: B): (SortedMultiSet[A], B)
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to ArrowAssoc[SortedMultiSet[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  7. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def canEqual(that: Any): Boolean
    Definition Classes
    MultiSet → Equals
  10. def className: String
    Definition Classes
    IterableOps
  11. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  12. def coll: SortedMultiSet.this.type
    Attributes
    protected[this]
    Definition Classes
    Iterable → IterableOps
  13. def collect[B](pf: PartialFunction[A, B])(implicit arg0: Ordering[B]): SortedMultiSet[B]

    B

    the element type of the returned collection

    pf

    the partial function which filters and map this sorted multiset

    returns

    a new collection resulting from applying the given partial function pf to each element on which it is defined and collecting the results

    Definition Classes
    SortedMultiSetOps
  14. def collect[B](pf: PartialFunction[A, B]): MultiSet[B]
    Definition Classes
    IterableOps
  15. def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
    Definition Classes
    IterableOps
  16. def collectOccurrences[B](pf: PartialFunction[(A, Int), (B, Int)])(implicit arg0: Ordering[B]): SortedMultiSet[B]

    B

    the element type of the returned collection

    pf

    the partial function which filters and map this sorted multiset

    returns

    a new collection resulting from applying the given partial function pf to each group of occurrences on which it is defined and collecting the results

    Definition Classes
    SortedMultiSetOps
  17. def collectOccurrences[B](pf: PartialFunction[(A, Int), (B, Int)]): collection.MultiSet[B]
    Definition Classes
    MultiSetOps
  18. def concat(that: collection.Iterable[A]): SortedMultiSet[A]

    that

    the collection of elements to add to this multiset

    returns

    a new multiset summing the occurrences of this multiset with the elements of that

    Definition Classes
    MultiSetOps
  19. def concat[B >: A](suffix: collection.Iterable[B]): MultiSet[B]
    Definition Classes
    IterableOps
  20. def concatOccurrences(that: collection.Iterable[(A, Int)]): SortedMultiSet[A]

    that

    the collection of occurrences to add to this multiset

    returns

    a new multiset summing the occurrences of this multiset and that collection of occurrences

    Definition Classes
    MultiSetOps
  21. def contains(elem: A): Boolean

    elem

    the element to test

    returns

    Whether elem has at least one occurrence in this multiset or not

    Definition Classes
    MultiSetOps
  22. def copyToArray[B >: A](xs: Array[B], start: Int): xs.type
    Definition Classes
    IterableOps
  23. def count(p: (A) ⇒ Boolean): Int
    Definition Classes
    IterableOps
  24. def drop(n: Int): SortedMultiSet[A]
    Definition Classes
    IterableOps
  25. def dropRight(n: Int): SortedMultiSet[A]
    Definition Classes
    IterableOps
  26. def dropWhile(p: (A) ⇒ Boolean): SortedMultiSet[A]
    Definition Classes
    IterableOps
  27. def ensuring(cond: (SortedMultiSet[A]) ⇒ Boolean, msg: ⇒ Any): SortedMultiSet[A]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to Ensuring[SortedMultiSet[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. def ensuring(cond: (SortedMultiSet[A]) ⇒ Boolean): SortedMultiSet[A]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to Ensuring[SortedMultiSet[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: Boolean, msg: ⇒ Any): SortedMultiSet[A]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to Ensuring[SortedMultiSet[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: Boolean): SortedMultiSet[A]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to Ensuring[SortedMultiSet[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. def equals(o: Any): Boolean
    Definition Classes
    MultiSet → Equals → AnyRef → Any
  33. def excl(elem: A): SortedMultiSet[A]

    elem

    the element to remove

    returns

    an immutable sorted multiset containing all the elements of this multiset and one occurrence less of elem

  34. def exists(p: (A) ⇒ Boolean): Boolean
    Definition Classes
    IterableOps
  35. def filter(pred: (A) ⇒ Boolean): SortedMultiSet[A]
    Definition Classes
    IterableOps
  36. def filterNot(pred: (A) ⇒ Boolean): SortedMultiSet[A]
    Definition Classes
    IterableOps
  37. def filterOccurrences(p: ((A, Int)) ⇒ Boolean): SortedMultiSet[A]

    returns

    a new multiset containing only the occurrences of elements of this multiset that satisfy the given predicate p

    Definition Classes
    MultiSetOps
  38. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  39. def find(p: (A) ⇒ Boolean): Option[A]
    Definition Classes
    IterableOps
  40. def firstKey: A
    Definition Classes
    SortedMultiSetOps → SortedOps
  41. def flatMap[B](f: (A) ⇒ IterableOnce[B])(implicit arg0: Ordering[B]): SortedMultiSet[B]

    Builds a new collection by applying a function to all elements of this sorted multiset and using the elements of the resulting collections.

    Builds a new collection by applying a function to all elements of this sorted multiset and using the elements of the resulting collections.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

    a new collection resulting from applying the given function f to each element of this sorted multiset and concatenating the results.

    Definition Classes
    SortedMultiSetOps
  42. def flatMap[B](f: (A) ⇒ IterableOnce[B]): MultiSet[B]
    Definition Classes
    IterableOps
  43. def flatMapOccurrences[B](f: ((A, Int)) ⇒ IterableOnce[(B, Int)])(implicit arg0: Ordering[B]): SortedMultiSet[B]

    Builds a new collection by applying a function to all pairs of element and its number of occurrences of this sorted multiset and using the elements of the resulting collections.

    Builds a new collection by applying a function to all pairs of element and its number of occurrences of this sorted multiset and using the elements of the resulting collections.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

    a new collection resulting from applying the given function f to each pair of element and its number of occurrences of this sorted multiset and concatenating the results.

    Definition Classes
    SortedMultiSetOps
  44. def flatMapOccurrences[B](f: ((A, Int)) ⇒ IterableOnce[(B, Int)]): collection.MultiSet[B]

    B

    the element type of the returned collection

    f

    the function to apply

    returns

    a new multiset resulting from applying the given function f to each pair of element and its number of occurrences of this multiset and concatenating the results

    Definition Classes
    MultiSetOps
  45. def flatten[B](implicit asIterable: (A) ⇒ IterableOnce[B]): MultiSet[B]
    Definition Classes
    IterableOps
  46. def foldLeft[B](z: B)(op: (B, A) ⇒ B): B
    Definition Classes
    IterableOps
  47. def foldRight[B](z: B)(op: (A, B) ⇒ B): B
    Definition Classes
    IterableOps
  48. def forall(p: (A) ⇒ Boolean): Boolean
    Definition Classes
    IterableOps
  49. def foreach[U](f: (A) ⇒ U): Unit
    Definition Classes
    IterableOps
  50. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to StringFormat[SortedMultiSet[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  51. def from(from: A): SortedMultiSet[A]
    Definition Classes
    SortedOps
  52. final def fromIterable[E](it: collection.Iterable[E]): MultiSet[E]
    Attributes
    protected[this]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  53. def fromOccurrences[E](it: collection.Iterable[(E, Int)]): collection.MultiSet[E]
    Attributes
    protected[this]
    Definition Classes
    MultiSetOps
  54. def fromSpecificIterable(coll: collection.Iterable[A]): SortedMultiSet[A]
    Attributes
    protected[this]
    Definition Classes
    SortedMultiSet → IterableOps
  55. def fromSpecificOccurrences(it: collection.Iterable[(A, Int)]): SortedMultiSet[A]
    Attributes
    protected[this]
    Definition Classes
    MultiSetOps
  56. def get(elem: A): Int

    elem

    Element to look up

    returns

    The number of occurrences of elem in this multiset

    Definition Classes
    MultiSetOps
  57. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  58. def groupBy[K](f: (A) ⇒ K): Map[K, SortedMultiSet[A]]
    Definition Classes
    IterableOps
  59. def groupMap[K, B](key: (A) ⇒ K)(f: (A) ⇒ B): Map[K, MultiSet[B]]
    Definition Classes
    IterableOps
  60. def groupMapReduce[K, B](key: (A) ⇒ K)(f: (A) ⇒ B)(reduce: (B, B) ⇒ B): Map[K, B]
    Definition Classes
    IterableOps
  61. def grouped(size: Int): Iterator[SortedMultiSet[A]]
    Definition Classes
    IterableOps
  62. def hashCode(): Int
    Definition Classes
    MultiSet → AnyRef → Any
  63. def head: A
    Definition Classes
    IterableOps
  64. def headOption: Option[A]
    Definition Classes
    IterableOps
  65. def incl(elem: A): SortedMultiSet[A]

    elem

    the element to add

    returns

    an immutable sorted multiset containing all the elements of this multiset and one more occurrence of elem

  66. def init: SortedMultiSet[A]
    Definition Classes
    IterableOps
  67. def inits: Iterator[SortedMultiSet[A]]
    Definition Classes
    IterableOps
  68. def isEmpty: Boolean
    Definition Classes
    IterableOps
  69. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  70. def iterableFactory: IterableFactory[MultiSet]
    Definition Classes
    SortedMultiSet → IterableOps
  71. def iterator(): Iterator[A]
    Definition Classes
    MultiSetOps → IterableOnce
  72. def iteratorFrom(start: A): Iterator[A]

    Creates an iterator that contains all values from this collection greater than or equal to start according to the ordering of this collection.

    Creates an iterator that contains all values from this collection greater than or equal to start according to the ordering of this collection. x.iteratorFrom(y) is equivalent to but will usually be more efficient than x.from(y).iterator

    start

    The lower-bound (inclusive) of the iterator

    Definition Classes
    SortedMultiSetOps
  73. def knownSize: Int
    Definition Classes
    IterableOps → IterableOnce
  74. def last: A
    Definition Classes
    IterableOps
  75. def lastKey: A
    Definition Classes
    SortedMultiSetOps → SortedOps
  76. def lastOption: Option[A]
    Definition Classes
    IterableOps
  77. def lazyZip[B](that: collection.Iterable[B]): LazyZip2[A, B, SortedMultiSet[A]]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to LazyZipOps[A, SortedMultiSet[A]] performed by method toLazyZipOps in strawman.collection.Iterable.
    Definition Classes
    LazyZipOps
  78. def map[B](f: (A) ⇒ B)(implicit arg0: Ordering[B]): SortedMultiSet[B]

    Builds a new sorted multiset by applying a function to all elements of this sorted multiset.

    Builds a new sorted multiset by applying a function to all elements of this sorted multiset.

    B

    the element type of the returned collection.

    f

    the function to apply to each element.

    returns

    a new collection resulting from applying the given function f to each element of this sorted multiset and collecting the results.

    Definition Classes
    SortedMultiSetOps
  79. def map[B](f: (A) ⇒ B): MultiSet[B]
    Definition Classes
    IterableOps
  80. def mapOccurrences[B](f: ((A, Int)) ⇒ (B, Int))(implicit arg0: Ordering[B]): SortedMultiSet[B]

    Builds a new sorted multiset by applying a function to all pairs of element and its number of occurrences.

    Builds a new sorted multiset by applying a function to all pairs of element and its number of occurrences.

    B

    the element type of the returned collection

    f

    the function to apply

    returns

    a new collection resulting from applying the given function f to each pair of element and its number of occurrences of this sorted multiset and collecting the results.

    Definition Classes
    SortedMultiSetOps
  81. def mapOccurrences[B](f: ((A, Int)) ⇒ (B, Int)): collection.MultiSet[B]

    B

    the element type of the returned collection

    f

    the function to apply

    returns

    a new multiset resulting from applying the given function f to each pair of element and its number of occurrences of this multiset and collecting the results

    Definition Classes
    MultiSetOps
  82. def max[B >: A](implicit ord: Ordering[B]): A
    Definition Classes
    IterableOps
  83. def maxBy[B](f: (A) ⇒ B)(implicit cmp: Ordering[B]): A
    Definition Classes
    IterableOps
  84. def min[B >: A](implicit ord: Ordering[B]): A
    Definition Classes
    IterableOps
  85. def minBy[B](f: (A) ⇒ B)(implicit cmp: Ordering[B]): A
    Definition Classes
    IterableOps
  86. def mkString: String
    Definition Classes
    IterableOps
  87. def mkString(sep: String): String
    Definition Classes
    IterableOps
  88. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOps
  89. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  90. def newSpecificBuilder(): Builder[A, SortedMultiSet[A]]
    Attributes
    protected[this]
    Definition Classes
    SortedMultiSet → IterableOps
  91. def nonEmpty: Boolean
    Definition Classes
    IterableOps
  92. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  93. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  94. def occurrences: SortedMap[A, Int]

    returns

    All the elements contained in this multiset and their number of occurrences

    Definition Classes
    SortedMultiSetSortedMultiSetOpsMultiSetOps
  95. implicit val ordering: Ordering[A]
    Definition Classes
    SortedMultiSet → SortedOps
  96. def partition(p: (A) ⇒ Boolean): (SortedMultiSet[A], SortedMultiSet[A])
    Definition Classes
    IterableOps
  97. def product[B >: A](implicit num: Numeric[B]): B
    Definition Classes
    IterableOps
  98. def range(from: A, until: A): SortedMultiSet[A]
    Definition Classes
    SortedOps
  99. def rangeImpl(from: Option[A], until: Option[A]): SortedMultiSet[A]
    Definition Classes
    SortedMultiSet → SortedOps
  100. def rangeTo(to: A): SortedMultiSet[A]
    Definition Classes
    SortedMultiSetOps → SortedOps
  101. def reduce[B >: A](op: (B, B) ⇒ B): B
    Definition Classes
    IterableOps
  102. def reduceLeft[B >: A](op: (B, A) ⇒ B): B
    Definition Classes
    IterableOps
  103. def reduceLeftOption[B >: A](op: (B, A) ⇒ B): Option[B]
    Definition Classes
    IterableOps
  104. def reduceOption[B >: A](op: (B, B) ⇒ B): Option[B]
    Definition Classes
    IterableOps
  105. def reduceRight[B >: A](op: (A, B) ⇒ B): B
    Definition Classes
    IterableOps
  106. def reduceRightOption[B >: A](op: (A, B) ⇒ B): Option[B]
    Definition Classes
    IterableOps
  107. def reversed: collection.Iterable[A]
    Attributes
    protected[this]
    Definition Classes
    IterableOps
  108. def scan[B >: A](z: B)(op: (B, B) ⇒ B): MultiSet[B]
    Definition Classes
    IterableOps
  109. def scanLeft[B](z: B)(op: (B, A) ⇒ B): MultiSet[B]
    Definition Classes
    IterableOps
  110. def scanRight[B](z: B)(op: (A, B) ⇒ B): MultiSet[B]
    Definition Classes
    IterableOps
  111. def size: Int
    Definition Classes
    IterableOps
  112. def slice(from: Int, until: Int): SortedMultiSet[A]
    Definition Classes
    IterableOps
  113. def sliding(size: Int, step: Int): Iterator[SortedMultiSet[A]]
    Definition Classes
    IterableOps
  114. def sliding(size: Int): Iterator[SortedMultiSet[A]]
    Definition Classes
    IterableOps
  115. def sortedFromIterable[B](it: collection.Iterable[B])(implicit arg0: Ordering[B]): SortedMultiSet[B]
    Attributes
    protected[this]
    Definition Classes
    SortedMultiSetSortedMultiSetOps
  116. def sortedFromOccurrences[B](it: collection.Iterable[(B, Int)])(implicit arg0: Ordering[B]): SortedMultiSet[B]
    Attributes
    protected[this]
    Definition Classes
    SortedMultiSetOps
  117. def sortedIterableFactory: SortedIterableFactory[SortedMultiSet]
    Definition Classes
    SortedMultiSetSortedMultiSetOps
  118. def span(p: (A) ⇒ Boolean): (SortedMultiSet[A], SortedMultiSet[A])
    Definition Classes
    IterableOps
  119. def splitAt(n: Int): (SortedMultiSet[A], SortedMultiSet[A])
    Definition Classes
    IterableOps
  120. def sum[B >: A](implicit num: Numeric[B]): B
    Definition Classes
    IterableOps
  121. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  122. def tail: SortedMultiSet[A]
    Definition Classes
    IterableOps
  123. def tails: Iterator[SortedMultiSet[A]]
    Definition Classes
    IterableOps
  124. def take(n: Int): SortedMultiSet[A]
    Definition Classes
    IterableOps
  125. def takeRight(n: Int): SortedMultiSet[A]
    Definition Classes
    IterableOps
  126. def takeWhile(p: (A) ⇒ Boolean): SortedMultiSet[A]
    Definition Classes
    IterableOps
  127. val this: SortedMultiSet[A]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to LazyZipOps[A, SortedMultiSet[A]] performed by method toLazyZipOps in strawman.collection.Iterable.
    Definition Classes
    LazyZipOps
  128. def to[C1](factory: Factory[A, C1]): C1
    Definition Classes
    IterableOps
  129. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOps
  130. def toIndexedSeq: IndexedSeq[A]
    Definition Classes
    IterableOps
  131. final def toIterable: SortedMultiSet.this.type
    Definition Classes
    Iterable → IterableOps
  132. def toList: List[A]
    Definition Classes
    IterableOps
  133. def toMap[K, V](implicit ev: <:<[A, (K, V)]): Map[K, V]
    Definition Classes
    IterableOps
  134. def toSeq: Seq[A]
    Definition Classes
    IterableOps
  135. def toSet[B >: A]: Set[B]
    Definition Classes
    IterableOps
  136. def toString(): String
    Definition Classes
    IterableOps → Any
  137. def toVector: Vector[A]
    Definition Classes
    IterableOps
  138. def transpose[B](implicit asIterable: (A) ⇒ collection.Iterable[B]): MultiSet[MultiSet[B]]
    Definition Classes
    IterableOps
  139. def unsorted: collection.MultiSet[A]

    this sorted multiset upcasted to an unsorted multiset

    this sorted multiset upcasted to an unsorted multiset

    Definition Classes
    SortedMultiSetSortedMultiSetOps
  140. def until(until: A): SortedMultiSet[A]
    Definition Classes
    SortedOps
  141. def unzip[A1, A2](implicit asPair: (A) ⇒ (A1, A2)): (MultiSet[A1], MultiSet[A2])
    Definition Classes
    IterableOps
  142. def view: View[A]
    Definition Classes
    IterableOps
  143. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  144. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  145. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  146. def withFilter(p: (A) ⇒ Boolean): SortedWithFilter
    Definition Classes
    SortedMultiSetOps → IterableOps
  147. def zip[B](that: collection.Iterable[B])(implicit ev: Ordering[B]): SortedMultiSet[(A, B)]

    Returns a sorted multiset formed from this sorted multiset and another iterable collection, by combining corresponding elements in pairs.

    Returns a sorted multiset formed from this sorted multiset and another iterable collection, by combining corresponding elements in pairs.

    B

    the type of the second half of the returned pairs

    that

    The iterable providing the second half of each result pair

    ev

    The ordering instance for type B

    returns

    a new sorted multiset containing pairs consisting of corresponding elements of this sorted multiset and that. The length of the returned collection is the minimum of the lengths of this and that

    Definition Classes
    SortedMultiSetOps
  148. def zip[B](that: collection.Iterable[B]): MultiSet[(A, B)]
    Definition Classes
    IterableOps
  149. def zipAll[A1 >: A, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): MultiSet[(A1, B)]
    Definition Classes
    IterableOps
  150. def zipWithIndex: SortedMultiSet[(A, Int)]
    Definition Classes
    SortedMultiSetOps → IterableOps
  151. def [B](y: B): (SortedMultiSet[A], B)
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to ArrowAssoc[SortedMultiSet[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to any2stringadd[SortedMultiSet[A]] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: any2stringadd[SortedMultiSet[A]]).+(other)
    Definition Classes
    any2stringadd

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, A) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator().foldLeft instead of /: on IterableOnce

  2. final def /:[B](z: B)(op: (B, A) ⇒ B): B
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  3. def :\[B](z: B)(op: (A, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator().foldRight instead of :\ on IterableOnce

  4. final def :\[B](z: B)(op: (A, B) ⇒ B): B
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  5. def find(p: (A) ⇒ Boolean): Option[A]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().find instead of .find on IterableOnce

  6. def flatMap[B](f: (A) ⇒ IterableOnce[B]): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().flatMap instead of .flatMap on IterableOnce or consider requiring an Iterable

  7. def foldLeft[B](z: B)(op: (B, A) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator().foldLeft instead of .foldLeft on IterableOnce

  8. def foldRight[B](z: B)(op: (A, B) ⇒ B): B
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator().foldRight instead of .foldLeft on IterableOnce

  9. def foreach[U](f: (A) ⇒ U): Unit
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator().foreach(...) instead of .foreach(...) on IterableOnce

  10. final def hasDefiniteSize: Boolean
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .knownSize >=0 instead of .hasDefiniteSize

  11. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().isEmpty instead of .isEmpty on IterableOnce

  12. def map[B](f: (A) ⇒ B): IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().map instead of .map on IterableOnce or consider requiring an Iterable

  13. def mkString: String
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().mkString instead of .mkString on IterableOnce

  14. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().mkString instead of .mkString on IterableOnce

  15. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator().mkString instead of .mkString on IterableOnce

  16. final def stringPrefix: String
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use className instead of stringPrefix

  17. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ArrayBuffer.from(it).toArray

  18. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ArrayBuffer.from(it) instead of it.toBuffer

  19. final def toBuffer[B >: A]: Buffer[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use ArrayBuffer.from(it) instead of it.toBuffer

  20. def toIterator: Iterator[A]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) toIterator has been renamed to iterator()

  21. final def toIterator: Iterator[A]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator() instead of .toIterator

  22. def toList: List[A]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use List.from(it) instead of it.toList

  23. def toMap[K, V](implicit ev: <:<[A, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use Map.from(it) instead of it.toVector on IterableOnce

  24. def toSeq: Seq[A]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use Seq.from(it) instead of it.toSeq

  25. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use Set.from(it) instead of it.toSet

  26. def toStream: LazyList[A]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use LazyList.from(it) instead of it.toStream

  27. final def toStream: LazyList[A]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use LazyList.from(it) instead of it.toStream

  28. def toVector: Vector[A]
    Implicit
    This member is added by an implicit conversion from SortedMultiSet[A] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (sortedMultiSet: IterableOnceExtensionMethods[A]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use Vector.from(it) instead of it.toVector on IterableOnce

Inherited from Iterable[A]

Inherited from collection.SortedMultiSet[A]

Inherited from SortedOps[A, SortedMultiSet[A]]

Inherited from collection.MultiSet[A]

Inherited from Equals

Inherited from collection.Iterable[A]

Inherited from collection.Traversable[A]

Inherited from IterableOps[A, MultiSet, SortedMultiSet[A]]

Inherited from IterableOnce[A]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion toLazyZipOps from SortedMultiSet[A] to LazyZipOps[A, SortedMultiSet[A]]

Inherited by implicit conversion iterableOnceExtensionMethods from SortedMultiSet[A] to IterableOnceExtensionMethods[A]

Inherited by implicit conversion any2stringadd from SortedMultiSet[A] to any2stringadd[SortedMultiSet[A]]

Inherited by implicit conversion StringFormat from SortedMultiSet[A] to StringFormat[SortedMultiSet[A]]

Inherited by implicit conversion Ensuring from SortedMultiSet[A] to Ensuring[SortedMultiSet[A]]

Inherited by implicit conversion ArrowAssoc from SortedMultiSet[A] to ArrowAssoc[SortedMultiSet[A]]

Ungrouped