Packages

  • package root
    Definition Classes
    root
  • package scala
    Definition Classes
    root
  • package reflect
    Definition Classes
    scala
  • package api

    EXPERIMENTAL

    EXPERIMENTAL

    The Scala Reflection API (located in scala-reflect.jar).

    In Scala 2.10.0, the Scala Reflection API and its implementation have an "experimental" status. This means that the API and the docs are not complete and can be changed in binary- and source-incompatible manner in 2.10.1. This also means that the implementation has some known issues.

    The following types are the backbone of the Scala Reflection API, and serve as a good starting point for information about Scala Reflection:

    For more information about Scala Reflection, see the Reflection Guide

    Definition Classes
    reflect
  • trait Scopes extends AnyRef

    EXPERIMENTAL

    EXPERIMENTAL

    This trait provides support for scopes in the reflection API.

    A scope object generally maps names to symbols available in a corresponding lexical scope. Scopes can be nested. The base type exposed to the reflection API, however, only exposes a minimal interface, representing a scope as an iterable of symbols.

    For rare occasions when it is necessary to create a scope manually, e.g., to populate members of scala.reflect.api.Types#RefinedType, there is the newScopeWith function.

    Additional functionality is exposed in member scopes that are returned by members and decls defined in scala.reflect.api.Types#TypeApi. Such scopes support the sorted method, which sorts members in declaration order.

    Definition Classes
    api
  • MemberScope
  • MemberScopeApi
  • Scope
  • ScopeApi
t

scala.reflect.api.Scopes

MemberScopeApi

trait MemberScopeApi extends Universe.ScopeApi

The API that all member scopes support

Source
Scopes.scala
Linear Supertypes
Universe.ScopeApi, collection.Iterable[Universe.Symbol], IterableFactoryDefaults[Universe.Symbol, collection.Iterable], IterableOps[Universe.Symbol, collection.Iterable, collection.Iterable[Universe.Symbol]], IterableOnceOps[Universe.Symbol, collection.Iterable, collection.Iterable[Universe.Symbol]], collection.IterableOnce[Universe.Symbol], AnyRef, Any
Known Subclasses
MemberScope
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MemberScopeApi
  2. ScopeApi
  3. Iterable
  4. IterableFactoryDefaults
  5. IterableOps
  6. IterableOnceOps
  7. IterableOnce
  8. AnyRef
  9. 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

Abstract Value Members

  1. abstract def iterator: collection.Iterator[Universe.Symbol]
    Definition Classes
    IterableOnce
  2. abstract def sorted: List[Universe.Symbol]

    Sorts the symbols included in this scope so that: 1) Symbols appear in the linearization order of their owners.

    Sorts the symbols included in this scope so that: 1) Symbols appear in the linearization order of their owners. 2) Symbols with the same owner appear in same order of their declarations. 3) Synthetic members (e.g. getters/setters for vals/vars) might appear in arbitrary order.

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 Universe.MemberScopeApi toany2stringadd[Universe.MemberScopeApi] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. final def ++[B >: Universe.Symbol](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @inline()
  5. def ->[B](y: B): (Universe.MemberScopeApi, B)
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toArrowAssoc[Universe.MemberScopeApi] 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 addString(b: collection.mutable.StringBuilder): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  8. final def addString(b: collection.mutable.StringBuilder, sep: String): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  9. def addString(b: collection.mutable.StringBuilder, start: String, sep: String, end: String): collection.mutable.StringBuilder
    Definition Classes
    IterableOnceOps
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def className: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
  12. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  13. final def coll: MemberScopeApi.this.type
    Attributes
    protected
    Definition Classes
    Iterable → IterableOps
  14. def collect[B](pf: PartialFunction[Universe.Symbol, B]): collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  15. def collectFirst[B](pf: PartialFunction[Universe.Symbol, B]): Option[B]
    Definition Classes
    IterableOnceOps
  16. def concat[B >: Universe.Symbol](suffix: collection.IterableOnce[B]): collection.Iterable[B]
    Definition Classes
    IterableOps
  17. def copyToArray[B >: Universe.Symbol](xs: Array[B], start: Int, len: Int): Int
    Definition Classes
    IterableOnceOps
  18. def copyToArray[B >: Universe.Symbol](xs: Array[B], start: Int): Int
    Definition Classes
    IterableOnceOps
  19. def copyToArray[B >: Universe.Symbol](xs: Array[B]): Int
    Definition Classes
    IterableOnceOps
  20. def corresponds[B](that: collection.IterableOnce[B])(p: (Universe.Symbol, B) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  21. def count(p: (Universe.Symbol) => Boolean): Int
    Definition Classes
    IterableOnceOps
  22. def drop(n: Int): collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableOps → IterableOnceOps
  23. def dropRight(n: Int): collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableOps
  24. def dropWhile(p: (Universe.Symbol) => Boolean): collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableOps → IterableOnceOps
  25. def empty: collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableFactoryDefaults → IterableOps
  26. def ensuring(cond: (Universe.MemberScopeApi) => Boolean, msg: => Any): Universe.MemberScopeApi
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toEnsuring[Universe.MemberScopeApi] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  27. def ensuring(cond: (Universe.MemberScopeApi) => Boolean): Universe.MemberScopeApi
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toEnsuring[Universe.MemberScopeApi] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  28. def ensuring(cond: Boolean, msg: => Any): Universe.MemberScopeApi
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toEnsuring[Universe.MemberScopeApi] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  29. def ensuring(cond: Boolean): Universe.MemberScopeApi
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toEnsuring[Universe.MemberScopeApi] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  32. def exists(p: (Universe.Symbol) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  33. def filter(pred: (Universe.Symbol) => Boolean): collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableOps → IterableOnceOps
  34. def filterNot(pred: (Universe.Symbol) => Boolean): collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableOps → IterableOnceOps
  35. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  36. def find(p: (Universe.Symbol) => Boolean): Option[Universe.Symbol]
    Definition Classes
    IterableOnceOps
  37. def flatMap[B](f: (Universe.Symbol) => collection.IterableOnce[B]): collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  38. def flatten[B](implicit asIterable: (Universe.Symbol) => collection.IterableOnce[B]): collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  39. def fold[A1 >: Universe.Symbol](z: A1)(op: (A1, A1) => A1): A1
    Definition Classes
    IterableOnceOps
  40. def foldLeft[B](z: B)(op: (B, Universe.Symbol) => B): B
    Definition Classes
    IterableOnceOps
  41. def foldRight[B](z: B)(op: (Universe.Symbol, B) => B): B
    Definition Classes
    IterableOnceOps
  42. def forall(p: (Universe.Symbol) => Boolean): Boolean
    Definition Classes
    IterableOnceOps
  43. def foreach[U](f: (Universe.Symbol) => U): Unit
    Definition Classes
    IterableOnceOps
  44. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toStringFormat[Universe.MemberScopeApi] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  45. def fromSpecific(coll: collection.IterableOnce[Universe.Symbol]): collection.Iterable[Universe.Symbol]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  46. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  47. def groupBy[K](f: (Universe.Symbol) => K): Map[K, collection.Iterable[Universe.Symbol]]
    Definition Classes
    IterableOps
  48. def groupMap[K, B](key: (Universe.Symbol) => K)(f: (Universe.Symbol) => B): Map[K, collection.Iterable[B]]
    Definition Classes
    IterableOps
  49. def groupMapReduce[K, B](key: (Universe.Symbol) => K)(f: (Universe.Symbol) => B)(reduce: (B, B) => B): Map[K, B]
    Definition Classes
    IterableOps
  50. def grouped(size: Int): collection.Iterator[collection.Iterable[Universe.Symbol]]
    Definition Classes
    IterableOps
  51. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  52. def head: Universe.Symbol
    Definition Classes
    IterableOps
  53. def headOption: Option[Universe.Symbol]
    Definition Classes
    IterableOps
  54. def init: collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableOps
  55. def inits: collection.Iterator[collection.Iterable[Universe.Symbol]]
    Definition Classes
    IterableOps
  56. def isEmpty: Boolean
    Definition Classes
    IterableOnceOps
  57. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  58. def isTraversableAgain: Boolean
    Definition Classes
    IterableOps → IterableOnceOps
  59. def iterableFactory: IterableFactory[collection.Iterable]
    Definition Classes
    Iterable → IterableOps
  60. def knownSize: Int
    Definition Classes
    IterableOnce
  61. def last: Universe.Symbol
    Definition Classes
    IterableOps
  62. def lastOption: Option[Universe.Symbol]
    Definition Classes
    IterableOps
  63. def lazyZip[B](that: collection.Iterable[B]): LazyZip2[Universe.Symbol, B, MemberScopeApi.this.type]
    Definition Classes
    Iterable
  64. def map[B](f: (Universe.Symbol) => B): collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  65. def max[B >: Universe.Symbol](implicit ord: math.Ordering[B]): Universe.Symbol
    Definition Classes
    IterableOnceOps
  66. def maxBy[B](f: (Universe.Symbol) => B)(implicit cmp: math.Ordering[B]): Universe.Symbol
    Definition Classes
    IterableOnceOps
  67. def maxByOption[B](f: (Universe.Symbol) => B)(implicit cmp: math.Ordering[B]): Option[Universe.Symbol]
    Definition Classes
    IterableOnceOps
  68. def maxOption[B >: Universe.Symbol](implicit ord: math.Ordering[B]): Option[Universe.Symbol]
    Definition Classes
    IterableOnceOps
  69. def min[B >: Universe.Symbol](implicit ord: math.Ordering[B]): Universe.Symbol
    Definition Classes
    IterableOnceOps
  70. def minBy[B](f: (Universe.Symbol) => B)(implicit cmp: math.Ordering[B]): Universe.Symbol
    Definition Classes
    IterableOnceOps
  71. def minByOption[B](f: (Universe.Symbol) => B)(implicit cmp: math.Ordering[B]): Option[Universe.Symbol]
    Definition Classes
    IterableOnceOps
  72. def minOption[B >: Universe.Symbol](implicit ord: math.Ordering[B]): Option[Universe.Symbol]
    Definition Classes
    IterableOnceOps
  73. final def mkString: String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  74. final def mkString(sep: String): String
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  75. final def mkString(start: String, sep: String, end: String): String
    Definition Classes
    IterableOnceOps
  76. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  77. def newSpecificBuilder: Builder[Universe.Symbol, collection.Iterable[Universe.Symbol]]
    Attributes
    protected
    Definition Classes
    IterableFactoryDefaults → IterableOps
  78. def nonEmpty: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
  79. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  80. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  81. def partition(p: (Universe.Symbol) => Boolean): (collection.Iterable[Universe.Symbol], collection.Iterable[Universe.Symbol])
    Definition Classes
    IterableOps
  82. def partitionMap[A1, A2](f: (Universe.Symbol) => Either[A1, A2]): (collection.Iterable[A1], collection.Iterable[A2])
    Definition Classes
    IterableOps
  83. def product[B >: Universe.Symbol](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  84. def reduce[B >: Universe.Symbol](op: (B, B) => B): B
    Definition Classes
    IterableOnceOps
  85. def reduceLeft[B >: Universe.Symbol](op: (B, Universe.Symbol) => B): B
    Definition Classes
    IterableOnceOps
  86. def reduceLeftOption[B >: Universe.Symbol](op: (B, Universe.Symbol) => B): Option[B]
    Definition Classes
    IterableOnceOps
  87. def reduceOption[B >: Universe.Symbol](op: (B, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  88. def reduceRight[B >: Universe.Symbol](op: (Universe.Symbol, B) => B): B
    Definition Classes
    IterableOnceOps
  89. def reduceRightOption[B >: Universe.Symbol](op: (Universe.Symbol, B) => B): Option[B]
    Definition Classes
    IterableOnceOps
  90. def reversed: collection.Iterable[Universe.Symbol]
    Attributes
    protected
    Definition Classes
    IterableOnceOps
  91. def scan[B >: Universe.Symbol](z: B)(op: (B, B) => B): collection.Iterable[B]
    Definition Classes
    IterableOps
  92. def scanLeft[B](z: B)(op: (B, Universe.Symbol) => B): collection.Iterable[B]
    Definition Classes
    IterableOps → IterableOnceOps
  93. def scanRight[B](z: B)(op: (Universe.Symbol, B) => B): collection.Iterable[B]
    Definition Classes
    IterableOps
  94. def size: Int
    Definition Classes
    IterableOnceOps
  95. def sizeCompare(that: collection.Iterable[_]): Int
    Definition Classes
    IterableOps
  96. def sizeCompare(otherSize: Int): Int
    Definition Classes
    IterableOps
  97. final def sizeIs: SizeCompareOps
    Definition Classes
    IterableOps
    Annotations
    @inline()
  98. def slice(from: Int, until: Int): collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableOps → IterableOnceOps
  99. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[Universe.Symbol]]
    Definition Classes
    IterableOps
  100. def sliding(size: Int): collection.Iterator[collection.Iterable[Universe.Symbol]]
    Definition Classes
    IterableOps
  101. def span(p: (Universe.Symbol) => Boolean): (collection.Iterable[Universe.Symbol], collection.Iterable[Universe.Symbol])
    Definition Classes
    IterableOps → IterableOnceOps
  102. def splitAt(n: Int): (collection.Iterable[Universe.Symbol], collection.Iterable[Universe.Symbol])
    Definition Classes
    IterableOps → IterableOnceOps
  103. def stepper[S <: Stepper[_]](implicit shape: StepperShape[Universe.Symbol, S]): S
    Definition Classes
    IterableOnce
  104. def stringPrefix: String
    Attributes
    protected[this]
    Definition Classes
    Iterable
    Annotations
    @deprecatedOverriding("Override className instead", "2.13.0")
  105. def sum[B >: Universe.Symbol](implicit num: math.Numeric[B]): B
    Definition Classes
    IterableOnceOps
  106. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  107. def tail: collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableOps
  108. def tails: collection.Iterator[collection.Iterable[Universe.Symbol]]
    Definition Classes
    IterableOps
  109. def take(n: Int): collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableOps → IterableOnceOps
  110. def takeRight(n: Int): collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableOps
  111. def takeWhile(p: (Universe.Symbol) => Boolean): collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableOps → IterableOnceOps
  112. def tapEach[U](f: (Universe.Symbol) => U): collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableOps → IterableOnceOps
  113. def to[C1](factory: Factory[Universe.Symbol, C1]): C1
    Definition Classes
    IterableOnceOps
  114. def toArray[B >: Universe.Symbol](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    IterableOnceOps
  115. final def toBuffer[B >: Universe.Symbol]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @inline()
  116. def toIndexedSeq: collection.immutable.IndexedSeq[Universe.Symbol]
    Definition Classes
    IterableOnceOps
  117. final def toIterable: MemberScopeApi.this.type
    Definition Classes
    Iterable → IterableOps
  118. def toList: collection.immutable.List[Universe.Symbol]
    Definition Classes
    IterableOnceOps
  119. def toMap[K, V](implicit ev: <:<[Universe.Symbol, (K, V)]): Map[K, V]
    Definition Classes
    IterableOnceOps
  120. def toSeq: collection.immutable.Seq[Universe.Symbol]
    Definition Classes
    IterableOnceOps
  121. def toSet[B >: Universe.Symbol]: Set[B]
    Definition Classes
    IterableOnceOps
  122. def toString(): String
    Definition Classes
    Iterable → AnyRef → Any
  123. def toVector: collection.immutable.Vector[Universe.Symbol]
    Definition Classes
    IterableOnceOps
  124. def transpose[B](implicit asIterable: (Universe.Symbol) => collection.Iterable[B]): collection.Iterable[collection.Iterable[B]]
    Definition Classes
    IterableOps
  125. def unzip[A1, A2](implicit asPair: (Universe.Symbol) => (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])
    Definition Classes
    IterableOps
  126. def unzip3[A1, A2, A3](implicit asTriple: (Universe.Symbol) => (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])
    Definition Classes
    IterableOps
  127. def view: View[Universe.Symbol]
    Definition Classes
    IterableOps
  128. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  129. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  130. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  131. def withFilter(p: (Universe.Symbol) => Boolean): WithFilter[Universe.Symbol, collection.Iterable]
    Definition Classes
    IterableOps
  132. def zip[B](that: collection.IterableOnce[B]): collection.Iterable[(Universe.Symbol, B)]
    Definition Classes
    IterableOps
  133. def zipAll[A1 >: Universe.Symbol, B](that: collection.Iterable[B], thisElem: A1, thatElem: B): collection.Iterable[(A1, B)]
    Definition Classes
    IterableOps
  134. def zipWithIndex: collection.Iterable[(Universe.Symbol, Int)]
    Definition Classes
    IterableOps → IterableOnceOps

Deprecated Value Members

  1. def ++:[B >: Universe.Symbol](that: collection.IterableOnce[B]): collection.Iterable[B]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use ++ instead of ++: for collections of type Iterable

  2. def /:[B](z: B)(op: (B, Universe.Symbol) => B): B
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol])./:(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  3. final def /:[B](z: B)(op: (B, Universe.Symbol) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldLeft instead of /:

  4. def :\[B](z: B)(op: (Universe.Symbol, B) => B): B
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).:\(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  5. final def :\[B](z: B)(op: (Universe.Symbol, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use foldRight instead of :\

  6. def aggregate[B](z: => B)(seqop: (B, Universe.Symbol) => B, combop: (B, B) => B): B
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) aggregate is not relevant for sequential collections. Use foldLeft(z)(seqop) instead.

  7. def collectFirst[B](f: PartialFunction[Universe.Symbol, B]): Option[B]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).collectFirst(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.collectFirst(...) instead

  8. def companion: IterableFactory[collection.Iterable]
    Definition Classes
    IterableOps
    Annotations
    @deprecated @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @inline()
    Deprecated

    (Since version 2.13.0) Use iterableFactory instead

  9. def copyToBuffer(dest: Buffer[Universe.Symbol]): Unit
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).copyToBuffer(dest)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.copyToBuffer(...) instead

  10. final def copyToBuffer[B >: Universe.Symbol](dest: Buffer[B]): Unit
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use dest ++= coll instead

  11. def count(f: (Universe.Symbol) => Boolean): Int
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).count(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.count(...) instead

  12. def exists(f: (Universe.Symbol) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).exists(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.exists(...) instead

  13. def filter(f: (Universe.Symbol) => Boolean): collection.Iterator[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).filter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.filter(...) instead

  14. def find(p: (Universe.Symbol) => Boolean): Option[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).find(p)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.find instead

  15. def flatMap[B](f: (Universe.Symbol) => collection.IterableOnce[B]): collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).flatMap(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  16. def fold[A1 >: A](z: A1)(op: (A1, A1) => A1): A1
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).fold(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.fold instead

  17. def foldLeft[B](z: B)(op: (B, Universe.Symbol) => B): B
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).foldLeft(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldLeft instead

  18. def foldRight[B](z: B)(op: (Universe.Symbol, B) => B): B
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).foldRight(z)(op)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foldRight instead

  19. def forall(f: (Universe.Symbol) => Boolean): Boolean
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).forall(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.forall(...) instead

  20. def foreach[U](f: (Universe.Symbol) => U): Unit
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).foreach(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.foreach(...) instead

  21. def hasDefiniteSize: Boolean
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)

  22. def isEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).isEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.isEmpty instead

  23. def map[B](f: (Universe.Symbol) => B): collection.IterableOnce[B]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).map(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

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

  24. def max(implicit ord: math.Ordering[Universe.Symbol]): Universe.Symbol
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).max(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.max instead

  25. def maxBy[B](f: (Universe.Symbol) => B)(implicit cmp: math.Ordering[B]): Universe.Symbol
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).maxBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.maxBy(...) instead

  26. def min(implicit ord: math.Ordering[Universe.Symbol]): Universe.Symbol
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).min(ord)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.min instead

  27. def minBy[B](f: (Universe.Symbol) => B)(implicit cmp: math.Ordering[B]): Universe.Symbol
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).minBy(f)(cmp)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.minBy(...) instead

  28. def mkString: String
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).mkString
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  29. def mkString(sep: String): String
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).mkString(sep)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  30. def mkString(start: String, sep: String, end: String): String
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).mkString(start, sep, end)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.mkString instead

  31. def nonEmpty: Boolean
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).nonEmpty
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.nonEmpty instead

  32. def product(implicit num: math.Numeric[Universe.Symbol]): Universe.Symbol
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).product(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.product instead

  33. def reduce(f: (Universe.Symbol, Universe.Symbol) => Universe.Symbol): Universe.Symbol
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).reduce(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduce(...) instead

  34. def reduceLeft(f: (Universe.Symbol, Universe.Symbol) => Universe.Symbol): Universe.Symbol
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).reduceLeft(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeft(...) instead

  35. def reduceLeftOption(f: (Universe.Symbol, Universe.Symbol) => Universe.Symbol): Option[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).reduceLeftOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceLeftOption(...) instead

  36. def reduceOption(f: (Universe.Symbol, Universe.Symbol) => Universe.Symbol): Option[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).reduceOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceOption(...) instead

  37. def reduceRight(f: (Universe.Symbol, Universe.Symbol) => Universe.Symbol): Universe.Symbol
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).reduceRight(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRight(...) instead

  38. def reduceRightOption(f: (Universe.Symbol, Universe.Symbol) => Universe.Symbol): Option[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).reduceRightOption(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.reduceRightOption(...) instead

  39. final def repr: collection.Iterable[Universe.Symbol]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use coll instead of repr in a collection implementation, use the collection value itself from the outside

  40. def sameElements[B >: A](that: collection.IterableOnce[B]): Boolean
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.collection.IterableOnce.
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sameElements instead

  41. def seq: MemberScopeApi.this.type
    Definition Classes
    Iterable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Iterable.seq always returns the iterable itself

  42. def size: Int
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).size
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.size instead

  43. def sum(implicit num: math.Numeric[Universe.Symbol]): Universe.Symbol
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).sum(num)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.sum instead

  44. def to[C1](factory: Factory[Universe.Symbol, C1]): C1
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).to(factory)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(factory) instead

  45. def toArray[B >: A](implicit arg0: ClassTag[B]): Array[B]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).toArray(arg0)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toArray

  46. def toBuffer[B >: A]: Buffer[B]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).toBuffer
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(ArrayBuffer) instead

  47. def toIndexedSeq: collection.IndexedSeq[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).toIndexedSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.toIndexedSeq instead

  48. final def toIterable: collection.Iterable[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).toIterable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Iterable) instead

  49. def toIterator: collection.Iterator[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).toIterator
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator instead

  50. final def toIterator: collection.Iterator[Universe.Symbol]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  51. def toList: collection.immutable.List[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).toList
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(List) instead

  52. def toMap[K, V](implicit ev: <:<[Universe.Symbol, (K, V)]): Map[K, V]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).toMap(ev)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Map) instead

  53. def toSeq: collection.immutable.Seq[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).toSeq
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Seq) instead

  54. def toSet[B >: A]: Set[B]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).toSet
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Set) instead

  55. def toStream: collection.immutable.Stream[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).toStream
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(LazyList) instead

  56. final def toStream: collection.immutable.Stream[Universe.Symbol]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .to(LazyList) instead of .toStream

  57. final def toTraversable: collection.Traversable[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).toTraversable
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  58. final def toTraversable: collection.Traversable[Universe.Symbol]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use toIterable instead

  59. def toVector: collection.immutable.Vector[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).toVector
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.13.0) Use .iterator.to(Vector) instead

  60. def view(from: Int, until: Int): View[Universe.Symbol]
    Definition Classes
    IterableOps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .view.slice(from, until) instead of .view(from, until)

  61. def withFilter(f: (Universe.Symbol) => Boolean): collection.Iterator[Universe.Symbol]
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toIterableOnceExtensionMethods[Universe.Symbol] performed by method iterableOnceExtensionMethods in scala.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:
    (memberScopeApi: IterableOnceExtensionMethods[Universe.Symbol]).withFilter(f)
    Definition Classes
    IterableOnceExtensionMethods
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use .iterator.withFilter(...) instead

  62. def [B](y: B): (Universe.MemberScopeApi, B)
    Implicit
    This member is added by an implicit conversion from Universe.MemberScopeApi toArrowAssoc[Universe.MemberScopeApi] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Universe.ScopeApi

Inherited from collection.Iterable[Universe.Symbol]

Inherited from IterableFactoryDefaults[Universe.Symbol, collection.Iterable]

Inherited from IterableOps[Universe.Symbol, collection.Iterable, collection.Iterable[Universe.Symbol]]

Inherited from IterableOnceOps[Universe.Symbol, collection.Iterable, collection.Iterable[Universe.Symbol]]

Inherited from collection.IterableOnce[Universe.Symbol]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion iterableOnceExtensionMethods fromUniverse.MemberScopeApi to IterableOnceExtensionMethods[Universe.Symbol]

Inherited by implicit conversion any2stringadd fromUniverse.MemberScopeApi to any2stringadd[Universe.MemberScopeApi]

Inherited by implicit conversion StringFormat fromUniverse.MemberScopeApi to StringFormat[Universe.MemberScopeApi]

Inherited by implicit conversion Ensuring fromUniverse.MemberScopeApi to Ensuring[Universe.MemberScopeApi]

Inherited by implicit conversion ArrowAssoc fromUniverse.MemberScopeApi to ArrowAssoc[Universe.MemberScopeApi]

Ungrouped