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], 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. IterableOps
  5. IterableOnceOps
  6. IterableOnce
  7. AnyRef
  8. Any
Implicitly
  1. by iterableOnceExtensionMethods
  2. by toLazyZipOps
  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. type IterableCC[X] = collection.Iterable[X]
    Attributes
    protected
    Definition Classes
    IterableOps

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

Deprecated Value Members

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

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

  3. 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 of :\ on IterableOnce

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

  5. 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

  6. 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 of .find on IterableOnce

  7. 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 of .flatMap on IterableOnce or consider requiring an Iterable

  8. 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 of .fold on IterableOnce

  9. 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 of .foldLeft on IterableOnce

  10. 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 of .foldLeft on IterableOnce

  11. 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 of .foreach(...) on IterableOnce

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

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

  13. 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 of .isEmpty on IterableOnce

  14. 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 of .map on IterableOnce or consider requiring an Iterable

  15. 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 of .mkString on IterableOnce

  16. 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 of .mkString on IterableOnce

  17. 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 of .mkString on IterableOnce

  18. 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 for sameElements on Iterable or IterableOnce

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

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

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

    (Since version 2.13.0) Use className instead of stringPrefix

  21. 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 factory.from(it) instead of it.to(factory) for IterableOnce

  22. 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 ArrayBuffer.from(it).toArray

  23. 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 ArrayBuffer.from(it) instead of it.toBuffer

  24. final def toBuffer[B >: Universe.Symbol]: Buffer[B]
    Definition Classes
    IterableOnceOps
    Annotations
    @deprecated @inline()
    Deprecated

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

  25. 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 Iterable.from(it) instead of it.toIterable

  26. 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) toIterator has been renamed to iterator

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

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

  28. 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 List.from(it) instead of it.toList

  29. 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 Map.from(it) instead of it.toVector on IterableOnce

  30. 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 Seq.from(it) instead of it.toSeq

  31. 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 Set.from(it) instead of it.toSet

  32. 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 Stream.from(it) instead of it.toStream

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

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

  34. 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 Vector.from(it) instead of it.toVector on IterableOnce

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

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

Inherited from Universe.ScopeApi

Inherited from collection.Iterable[Universe.Symbol]

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 toLazyZipOps fromUniverse.MemberScopeApi to LazyZipOps[Universe.Symbol, collection.Iterable[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