Packages

t

strawman.collection

SortedMultiSetOps

trait SortedMultiSetOps[A, +CC[X] <: MultiSet[X], +C <: Iterable[A]] extends MultiSetOps[A, MultiSet, C] with SortedOps[A, C]

Linear Supertypes
SortedOps[A, C], MultiSetOps[A, MultiSet, C], IterableOps[A, MultiSet, C], IterableOnce[A], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SortedMultiSetOps
  2. SortedOps
  3. MultiSetOps
  4. IterableOps
  5. IterableOnce
  6. AnyRef
  7. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. 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

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

Abstract Value Members

  1. abstract def coll: C
    Attributes
    protected[this]
    Definition Classes
    IterableOps
  2. abstract def fromSpecificIterable(coll: Iterable[A]): C
    Attributes
    protected[this]
    Definition Classes
    IterableOps
  3. abstract def newSpecificBuilder(): Builder[A, C]
    Attributes
    protected[this]
    Definition Classes
    IterableOps
  4. abstract def occurrences: SortedMap[A, Int]

    returns

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

    Definition Classes
    SortedMultiSetOpsMultiSetOps
  5. implicit abstract def ordering: Ordering[A]
    Definition Classes
    SortedOps
  6. abstract def rangeImpl(from: Option[A], until: Option[A]): C
    Definition Classes
    SortedOps
  7. abstract def sortedFromIterable[B](it: Iterable[B])(implicit arg0: Ordering[B]): CC[B]
    Attributes
    protected[this]
  8. abstract def sortedIterableFactory: SortedIterableFactory[CC]
  9. abstract def toIterable: Iterable[A]
    Definition Classes
    IterableOps
  10. abstract def unordered: MultiSet[A]

    this sorted multiset upcasted to an unsorted multiset

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] to any2stringadd[SortedMultiSetOps[A, CC, C]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: A](suffix: Iterable[B]): MultiSet[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. def ->[B](y: B): (SortedMultiSetOps[A, CC, C], B)
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] to ArrowAssoc[SortedMultiSetOps[A, CC, C]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def className: String
    Definition Classes
    IterableOps
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  10. def collect[B](pf: PartialFunction[A, B])(implicit arg0: Ordering[B]): CC[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

  11. def collect[B](pf: PartialFunction[A, B]): MultiSet[B]
    Definition Classes
    IterableOps
  12. def collectFirst[B](pf: PartialFunction[A, B]): Option[B]
    Definition Classes
    IterableOps
  13. def concat(that: Iterable[A]): CC[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
    SortedMultiSetOpsMultiSetOps
  14. def concat[B >: A](suffix: Iterable[B]): MultiSet[B]
    Definition Classes
    IterableOps
  15. def concatOccurrences(that: Iterable[(A, Int)]): CC[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
    SortedMultiSetOpsMultiSetOps
  16. 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
  17. def copyToArray[B >: A](xs: Array[B], start: Int): xs.type
    Definition Classes
    IterableOps
  18. def count(p: (A) ⇒ Boolean): Int
    Definition Classes
    IterableOps
  19. def drop(n: Int): C
    Definition Classes
    IterableOps
  20. def dropRight(n: Int): C
    Definition Classes
    IterableOps
  21. def dropWhile(p: (A) ⇒ Boolean): C
    Definition Classes
    IterableOps
  22. def ensuring(cond: (SortedMultiSetOps[A, CC, C]) ⇒ Boolean, msg: ⇒ Any): SortedMultiSetOps[A, CC, C]
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] to Ensuring[SortedMultiSetOps[A, CC, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. def ensuring(cond: (SortedMultiSetOps[A, CC, C]) ⇒ Boolean): SortedMultiSetOps[A, CC, C]
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] to Ensuring[SortedMultiSetOps[A, CC, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  24. def ensuring(cond: Boolean, msg: ⇒ Any): SortedMultiSetOps[A, CC, C]
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] to Ensuring[SortedMultiSetOps[A, CC, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  25. def ensuring(cond: Boolean): SortedMultiSetOps[A, CC, C]
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] to Ensuring[SortedMultiSetOps[A, CC, C]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  26. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  28. def exists(p: (A) ⇒ Boolean): Boolean
    Definition Classes
    IterableOps
  29. def filter(pred: (A) ⇒ Boolean): C
    Definition Classes
    IterableOps
  30. def filterNot(pred: (A) ⇒ Boolean): C
    Definition Classes
    IterableOps
  31. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  32. def find(p: (A) ⇒ Boolean): Option[A]
    Definition Classes
    IterableOps
  33. def firstKey: A
    Definition Classes
    SortedMultiSetOps → SortedOps
  34. def flatMap[B](f: (A) ⇒ IterableOnce[B])(implicit arg0: Ordering[B]): CC[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.

  35. def flatMap[B](f: (A) ⇒ IterableOnce[B]): MultiSet[B]
    Definition Classes
    IterableOps
  36. def flatMapOccurrences[B](f: ((A, Int)) ⇒ IterableOnce[(B, Int)])(implicit arg0: Ordering[B]): CC[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.

  37. def flatMapOccurrences[B](f: ((A, Int)) ⇒ IterableOnce[(B, Int)]): 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
  38. def flatten[B](implicit ev: (A) ⇒ IterableOnce[B]): MultiSet[B]
    Definition Classes
    IterableOps
  39. def foldLeft[B](z: B)(op: (B, A) ⇒ B): B
    Definition Classes
    IterableOps
  40. def foldRight[B](z: B)(op: (A, B) ⇒ B): B
    Definition Classes
    IterableOps
  41. def forall(p: (A) ⇒ Boolean): Boolean
    Definition Classes
    IterableOps
  42. def foreach[U](f: (A) ⇒ U): Unit
    Definition Classes
    IterableOps
  43. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] to StringFormat[SortedMultiSetOps[A, CC, C]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  44. def from(from: A): C
    Definition Classes
    SortedOps
  45. def fromIterable[E](it: Iterable[E]): MultiSet[E]
    Attributes
    protected[this]
    Definition Classes
    IterableOps
  46. def fromOccurrences[E](it: Iterable[(E, Int)]): MultiSet[E]
    Attributes
    protected[this]
    Definition Classes
    MultiSetOps
  47. def get(elem: A): Int

    elem

    Element to look up

    returns

    The number of occurrences of elem in this multiset

    Definition Classes
    MultiSetOps
  48. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  49. def groupBy[K](f: (A) ⇒ K): immutable.Map[K, C]
    Definition Classes
    IterableOps
  50. def groupMap[K, B](key: (A) ⇒ K)(f: (A) ⇒ B): immutable.Map[K, MultiSet[B]]
    Definition Classes
    IterableOps
  51. def groupMapReduce[K, B](key: (A) ⇒ K)(f: (A) ⇒ B)(reduce: (B, B) ⇒ B): immutable.Map[K, B]
    Definition Classes
    IterableOps
  52. def grouped(size: Int): Iterator[C]
    Definition Classes
    IterableOps
  53. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  54. def head: A
    Definition Classes
    IterableOps
  55. def headOption: Option[A]
    Definition Classes
    IterableOps
  56. def init: C
    Definition Classes
    IterableOps
  57. def isEmpty: Boolean
    Definition Classes
    IterableOps
  58. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  59. def iterableFactory: IterableFactoryLike[MultiSet]
    Definition Classes
    SortedMultiSetOps → IterableOps
  60. def iterator(): Iterator[A]
    Definition Classes
    MultiSetOps → IterableOnce
  61. 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

  62. def knownSize: Int
    Definition Classes
    IterableOps → IterableOnce
  63. def last: A
    Definition Classes
    IterableOps
  64. def lastKey: A
    Definition Classes
    SortedMultiSetOps → SortedOps
  65. def lastOption: Option[A]
    Definition Classes
    IterableOps
  66. def map[B](f: (A) ⇒ B)(implicit arg0: Ordering[B]): CC[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.

  67. def map[B](f: (A) ⇒ B): MultiSet[B]
    Definition Classes
    IterableOps
  68. def mapOccurrences[B](f: ((A, Int)) ⇒ (B, Int))(implicit arg0: Ordering[B]): CC[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.

  69. def mapOccurrences[B](f: ((A, Int)) ⇒ (B, Int)): 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
  70. def max[B >: A](implicit ord: Ordering[B]): A
    Definition Classes
    IterableOps
  71. def maxBy[B](f: (A) ⇒ B)(implicit cmp: Ordering[B]): A
    Definition Classes
    IterableOps
  72. def min[B >: A](implicit ord: Ordering[B]): A
    Definition Classes
    IterableOps
  73. def minBy[B](f: (A) ⇒ B)(implicit cmp: Ordering[B]): A
    Definition Classes
    IterableOps
  74. def mkString: String
    Definition Classes
    IterableOps
  75. def mkString(sep: String): String
    Definition Classes
    IterableOps
  76. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOps
  77. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  78. def nonEmpty: Boolean
    Definition Classes
    IterableOps
  79. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  80. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  81. def partition(p: (A) ⇒ Boolean): (C, C)
    Definition Classes
    IterableOps
  82. def product[B >: A](implicit num: Numeric[B]): B
    Definition Classes
    IterableOps
  83. def range(from: A, until: A): C
    Definition Classes
    SortedOps
  84. def rangeTo(to: A): C
    Definition Classes
    SortedMultiSetOps → SortedOps
  85. def reduce[B >: A](op: (B, B) ⇒ B): B
    Definition Classes
    IterableOps
  86. def reduceLeft[B >: A](op: (B, A) ⇒ B): B
    Definition Classes
    IterableOps
  87. def reduceLeftOption[B >: A](op: (B, A) ⇒ B): Option[B]
    Definition Classes
    IterableOps
  88. def reduceOption[B >: A](op: (B, B) ⇒ B): Option[B]
    Definition Classes
    IterableOps
  89. def reduceRight[B >: A](op: (A, B) ⇒ B): B
    Definition Classes
    IterableOps
  90. def reduceRightOption[B >: A](op: (A, B) ⇒ B): Option[B]
    Definition Classes
    IterableOps
  91. def reversed: Iterable[A]
    Attributes
    protected[this]
    Definition Classes
    IterableOps
  92. def scan[B >: A](z: B)(op: (B, B) ⇒ B): MultiSet[B]
    Definition Classes
    IterableOps
  93. def scanLeft[B](z: B)(op: (B, A) ⇒ B): MultiSet[B]
    Definition Classes
    IterableOps
  94. def scanRight[B](z: B)(op: (A, B) ⇒ B): MultiSet[B]
    Definition Classes
    IterableOps
  95. def size: Int
    Definition Classes
    IterableOps
  96. def slice(from: Int, until: Int): C
    Definition Classes
    IterableOps
  97. def sliding(size: Int, step: Int): Iterator[C]
    Definition Classes
    IterableOps
  98. def sliding(size: Int): Iterator[C]
    Definition Classes
    IterableOps
  99. def sortedFromOccurrences[B](it: Iterable[(B, Int)])(implicit arg0: Ordering[B]): CC[B]
    Attributes
    protected[this]
  100. def span(p: (A) ⇒ Boolean): (C, C)
    Definition Classes
    IterableOps
  101. def splitAt(n: Int): (C, C)
    Definition Classes
    IterableOps
  102. def sum[B >: A](implicit num: Numeric[B]): B
    Definition Classes
    IterableOps
  103. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  104. def tail: C
    Definition Classes
    IterableOps
  105. def take(n: Int): C
    Definition Classes
    IterableOps
  106. def takeRight(n: Int): C
    Definition Classes
    IterableOps
  107. def takeWhile(p: (A) ⇒ Boolean): C
    Definition Classes
    IterableOps
  108. def to[C1](factory: Factory[A, C1]): C1
    Definition Classes
    IterableOps
  109. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOps
  110. def toIndexedSeq: immutable.IndexedSeq[A]
    Definition Classes
    IterableOps
  111. def toList: List[A]
    Definition Classes
    IterableOps
  112. def toMap[K, V](implicit ev: <:<[A, (K, V)]): immutable.Map[K, V]
    Definition Classes
    IterableOps
  113. def toSeq: immutable.Seq[A]
    Definition Classes
    IterableOps
  114. def toSet[B >: A]: immutable.Set[B]
    Definition Classes
    IterableOps
  115. def toString(): String
    Definition Classes
    IterableOps → Any
  116. def toVector: Vector[A]
    Definition Classes
    IterableOps
  117. def transpose[B](implicit asIterable: (A) ⇒ Iterable[B]): MultiSet[MultiSet[B]]
    Definition Classes
    IterableOps
  118. def until(until: A): C
    Definition Classes
    SortedOps
  119. def unzip[A1, A2](implicit asPair: <:<[A, (A1, A2)]): (MultiSet[A1], MultiSet[A2])
    Definition Classes
    IterableOps
  120. def view: View[A]
    Definition Classes
    IterableOps
  121. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  122. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  123. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  124. def withFilter(p: (A) ⇒ Boolean): SortedWithFilter
    Definition Classes
    SortedMultiSetOps → IterableOps
  125. def zip[B](that: Iterable[B])(implicit ev: Ordering[B]): CC[(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

  126. def zip[B](that: Iterable[B]): MultiSet[(A, B)]
    Definition Classes
    IterableOps
  127. def zipWithIndex: CC[(A, Int)]
    Definition Classes
    SortedMultiSetOps → IterableOps
  128. def [B](y: B): (SortedMultiSetOps[A, CC, C], B)
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] to ArrowAssoc[SortedMultiSetOps[A, CC, C]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

  1. 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 /:

  2. 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 :\

  3. def find(p: (A) ⇒ Boolean): Option[A]
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] 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:
    (sortedMultiSetOps: IterableOnceExtensionMethods[A]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  4. def foreach[U](f: (A) ⇒ U): Unit
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] 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:
    (sortedMultiSetOps: IterableOnceExtensionMethods[A]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

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

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

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

  6. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] 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:
    (sortedMultiSetOps: IterableOnceExtensionMethods[A]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  7. def mkString: String
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] 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:
    (sortedMultiSetOps: IterableOnceExtensionMethods[A]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  8. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] 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:
    (sortedMultiSetOps: IterableOnceExtensionMethods[A]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  9. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] 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:
    (sortedMultiSetOps: 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

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

    (Since version 2.13.0) Use className instead of stringPrefix

  11. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] 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:
    (sortedMultiSetOps: IterableOnceExtensionMethods[A]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  12. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] to IterableOnceExtensionMethods[A] performed by method iterableOnceExtensionMethods in strawman.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  13. def toList[B >: A]: List[B]
    Implicit
    This member is added by an implicit conversion from SortedMultiSetOps[A, CC, C] 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:
    (sortedMultiSetOps: IterableOnceExtensionMethods[A]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

Inherited from SortedOps[A, C]

Inherited from MultiSetOps[A, MultiSet, C]

Inherited from IterableOps[A, MultiSet, C]

Inherited from IterableOnce[A]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods from SortedMultiSetOps[A, CC, C] to IterableOnceExtensionMethods[A]

Inherited by implicit conversion any2stringadd from SortedMultiSetOps[A, CC, C] to any2stringadd[SortedMultiSetOps[A, CC, C]]

Inherited by implicit conversion StringFormat from SortedMultiSetOps[A, CC, C] to StringFormat[SortedMultiSetOps[A, CC, C]]

Inherited by implicit conversion Ensuring from SortedMultiSetOps[A, CC, C] to Ensuring[SortedMultiSetOps[A, CC, C]]

Inherited by implicit conversion ArrowAssoc from SortedMultiSetOps[A, CC, C] to ArrowAssoc[SortedMultiSetOps[A, CC, C]]

Ungrouped