Packages

class ErrorScope extends SymbolTable.Scope

The error scope.

Linear Supertypes
SymbolTable.Scope, SymbolTable.MemberScopeApi, SymbolTable.ScopeApi, collection.Iterable[SymbolTable.Symbol], IterableLike[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]], Equals, GenIterable[SymbolTable.Symbol], GenIterableLike[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]], collection.Traversable[SymbolTable.Symbol], GenTraversable[SymbolTable.Symbol], GenericTraversableTemplate[SymbolTable.Symbol, collection.Iterable], TraversableLike[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]], GenTraversableLike[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]], Parallelizable[SymbolTable.Symbol, ParIterable[SymbolTable.Symbol]], collection.TraversableOnce[SymbolTable.Symbol], GenTraversableOnce[SymbolTable.Symbol], FilterMonadic[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]], HasNewBuilder[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ErrorScope
  2. Scope
  3. MemberScopeApi
  4. ScopeApi
  5. Iterable
  6. IterableLike
  7. Equals
  8. GenIterable
  9. GenIterableLike
  10. Traversable
  11. GenTraversable
  12. GenericTraversableTemplate
  13. TraversableLike
  14. GenTraversableLike
  15. Parallelizable
  16. TraversableOnce
  17. GenTraversableOnce
  18. FilterMonadic
  19. HasNewBuilder
  20. AnyRef
  21. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ErrorScope(owner: SymbolTable.Symbol)

Type Members

  1. type Self = collection.Iterable[SymbolTable.Symbol]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  2. class WithFilter extends FilterMonadic[A, Repr]
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def ++[B >: SymbolTable.Symbol, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[SymbolTable.Symbol], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  4. def ++:[B >: SymbolTable.Symbol, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[collection.Iterable[SymbolTable.Symbol], B, That]): That
    Definition Classes
    TraversableLike
  5. def ++:[B >: SymbolTable.Symbol, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[SymbolTable.Symbol], B, That]): That
    Definition Classes
    TraversableLike
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. def addString(b: StringBuilder): StringBuilder
    Definition Classes
    TraversableOnce
  8. def addString(b: StringBuilder, sep: String): StringBuilder
    Definition Classes
    TraversableOnce
  9. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
    Definition Classes
    TraversableOnce
  10. def aggregate[B](z: ⇒ B)(seqop: (B, SymbolTable.Symbol) ⇒ B, combop: (B, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def canEqual(that: Any): Boolean
    Definition Classes
    IterableLike → Equals
  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  14. def cloneScope: SymbolTable.Scope

    Returns a new scope with the same content as this one.

    Returns a new scope with the same content as this one.

    Definition Classes
    Scope
  15. def collect[B, That](pf: PartialFunction[SymbolTable.Symbol, B])(implicit bf: CanBuildFrom[collection.Iterable[SymbolTable.Symbol], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  16. def collectFirst[B](pf: PartialFunction[SymbolTable.Symbol, B]): Option[B]
    Definition Classes
    TraversableOnce
  17. def companion: GenericCompanion[collection.Iterable]
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  18. def containsName(name: SymbolTable.Name): Boolean

    True if the name exists in this scope, false otherwise.

    True if the name exists in this scope, false otherwise.

    Definition Classes
    Scope
  19. def copyToArray[B >: SymbolTable.Symbol](xs: Array[B], start: Int, len: Int): Unit
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  20. def copyToArray[B >: SymbolTable.Symbol](xs: Array[B]): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  21. def copyToArray[B >: SymbolTable.Symbol](xs: Array[B], start: Int): Unit
    Definition Classes
    TraversableOnce → GenTraversableOnce
  22. def copyToBuffer[B >: SymbolTable.Symbol](dest: Buffer[B]): Unit
    Definition Classes
    TraversableOnce
  23. def count(p: (SymbolTable.Symbol) ⇒ Boolean): Int
    Definition Classes
    TraversableOnce → GenTraversableOnce
  24. def drop(n: Int): collection.Iterable[SymbolTable.Symbol]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  25. def dropRight(n: Int): collection.Iterable[SymbolTable.Symbol]
    Definition Classes
    IterableLike
  26. def dropWhile(p: (SymbolTable.Symbol) ⇒ Boolean): collection.Iterable[SymbolTable.Symbol]
    Definition Classes
    TraversableLike → GenTraversableLike
  27. def enter[T <: SymbolTable.Symbol](sym: T): T

    enter a symbol

    enter a symbol

    Definition Classes
    Scope
  28. def enterEntry(e: SymbolTable.ScopeEntry): Unit

    enter a scope entry

    enter a scope entry

    Attributes
    protected
    Definition Classes
    Scope
  29. def enterIfNew[T <: SymbolTable.Symbol](sym: T): T
    Definition Classes
    Scope
  30. def enterUnique(sym: SymbolTable.Symbol): Unit

    enter a symbol, asserting that no symbol with same name exists in scope

    enter a symbol, asserting that no symbol with same name exists in scope

    Definition Classes
    Scope
  31. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  33. def exists(p: (SymbolTable.Symbol) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  34. def filter(p: (SymbolTable.Symbol) ⇒ Boolean): SymbolTable.Scope
    Definition Classes
    Scope → TraversableLike → GenTraversableLike
  35. def filterNot(p: (SymbolTable.Symbol) ⇒ Boolean): SymbolTable.Scope
    Definition Classes
    Scope → TraversableLike → GenTraversableLike
  36. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  37. def find(p: (SymbolTable.Symbol) ⇒ Boolean): Option[SymbolTable.Symbol]
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  38. def flatMap[B, That](f: (SymbolTable.Symbol) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[collection.Iterable[SymbolTable.Symbol], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  39. def flatten[B](implicit asTraversable: (SymbolTable.Symbol) ⇒ GenTraversableOnce[B]): collection.Iterable[B]
    Definition Classes
    GenericTraversableTemplate
  40. def fold[A1 >: SymbolTable.Symbol](z: A1)(op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  41. def foldLeft[B](z: B)(op: (B, SymbolTable.Symbol) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  42. def foldRight[B](z: B)(op: (SymbolTable.Symbol, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  43. def forall(p: (SymbolTable.Symbol) ⇒ Boolean): Boolean
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  44. def foreach[U](p: (SymbolTable.Symbol) ⇒ U): Unit
    Definition Classes
    Scope → IterableLike → GenericTraversableTemplate → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  45. def genericBuilder[B]: Builder[B, collection.Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
  46. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  47. def groupBy[K](f: (SymbolTable.Symbol) ⇒ K): Map[K, collection.Iterable[SymbolTable.Symbol]]
    Definition Classes
    TraversableLike → GenTraversableLike
  48. def grouped(size: Int): collection.Iterator[collection.Iterable[SymbolTable.Symbol]]
    Definition Classes
    IterableLike
  49. def hasDefiniteSize: Boolean
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  50. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  51. def head: SymbolTable.Symbol
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  52. def headOption: Option[SymbolTable.Symbol]
    Definition Classes
    TraversableLike → GenTraversableLike
  53. def init: collection.Iterable[SymbolTable.Symbol]
    Definition Classes
    TraversableLike → GenTraversableLike
  54. def inits: collection.Iterator[collection.Iterable[SymbolTable.Symbol]]
    Definition Classes
    TraversableLike
  55. def isEmpty: Boolean

    is the scope empty?

    is the scope empty?

    Definition Classes
    Scope → IterableLike → GenericTraversableTemplate → TraversableLike → TraversableOnce → GenTraversableOnce
  56. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  57. def isSameScope(other: SymbolTable.Scope): Boolean

    TODO - we can test this more efficiently than checking isSubScope in both directions.

    TODO - we can test this more efficiently than checking isSubScope in both directions. However the size test might be enough to quickly rule out most failures.

    Definition Classes
    Scope
  58. def isSubScope(other: SymbolTable.Scope): Boolean
    Definition Classes
    Scope
  59. final def isTraversableAgain: Boolean
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  60. def iterator: Iterator[SymbolTable.Symbol]

    Return all symbols as an iterator in the order they were entered in this scope.

    Return all symbols as an iterator in the order they were entered in this scope.

    Definition Classes
    Scope → IterableLike → GenIterableLike
  61. def last: SymbolTable.Symbol
    Definition Classes
    TraversableLike → GenTraversableLike
  62. def lastOption: Option[SymbolTable.Symbol]
    Definition Classes
    TraversableLike → GenTraversableLike
  63. def lookup(name: SymbolTable.Name): SymbolTable.Symbol

    Lookup a symbol.

    Lookup a symbol.

    Definition Classes
    Scope
  64. def lookupAll(name: SymbolTable.Name): Iterator[SymbolTable.Symbol]

    Returns an iterator yielding every symbol with given name in this scope.

    Returns an iterator yielding every symbol with given name in this scope.

    Definition Classes
    Scope
  65. def lookupAllEntries(name: SymbolTable.Name): Iterator[SymbolTable.ScopeEntry]
    Definition Classes
    Scope
  66. def lookupClass(name: SymbolTable.Name): SymbolTable.Symbol
    Definition Classes
    Scope
  67. def lookupEntry(name: SymbolTable.Name): SymbolTable.ScopeEntry

    lookup a symbol entry matching given name.

    lookup a symbol entry matching given name.

    Definition Classes
    Scope
    Note

    from Martin: I believe this is a hotspot or will be one in future versions of the type system. I have reverted the previous change to use iterators as too costly.

  68. def lookupModule(name: SymbolTable.Name): SymbolTable.Symbol

    Lookup a module or a class, filtering out matching names in scope which do not match that requirement.

    Lookup a module or a class, filtering out matching names in scope which do not match that requirement.

    Definition Classes
    Scope
  69. final def lookupNameInSameScopeAs(original: SymbolTable.Symbol, companionName: SymbolTable.Name): SymbolTable.Symbol
    Definition Classes
    Scope
  70. def lookupNextEntry(entry: SymbolTable.ScopeEntry): SymbolTable.ScopeEntry

    lookup next entry with same name as this one

    lookup next entry with same name as this one

    Definition Classes
    Scope
    Note

    from Martin: I believe this is a hotspot or will be one in future versions of the type system. I have reverted the previous change to use iterators as too costly.

  71. final def lookupSymbolEntry(sym: SymbolTable.Symbol): SymbolTable.ScopeEntry
    Definition Classes
    Scope
  72. def lookupUnshadowedEntries(name: SymbolTable.Name): Iterator[SymbolTable.ScopeEntry]
    Definition Classes
    Scope
  73. def map[B, That](f: (SymbolTable.Symbol) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[SymbolTable.Symbol], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  74. def max[B >: SymbolTable.Symbol](implicit cmp: Ordering[B]): SymbolTable.Symbol
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def maxBy[B](f: (SymbolTable.Symbol) ⇒ B)(implicit cmp: Ordering[B]): SymbolTable.Symbol
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def min[B >: SymbolTable.Symbol](implicit cmp: Ordering[B]): SymbolTable.Symbol
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def minBy[B](f: (SymbolTable.Symbol) ⇒ B)(implicit cmp: Ordering[B]): SymbolTable.Symbol
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def mkString(start: String, sep: String, end: String): String
    Definition Classes
    Scope → TraversableOnce → GenTraversableOnce
  79. def mkString: String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. def mkString(sep: String): String
    Definition Classes
    TraversableOnce → GenTraversableOnce
  81. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  82. def nestingLevel: Int

    Return the nesting level of this scope, i.e.

    Return the nesting level of this scope, i.e. the number of times this scope was nested in another

    Definition Classes
    Scope
  83. def newBuilder: Builder[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]]
    Attributes
    protected[this]
    Definition Classes
    GenericTraversableTemplate → HasNewBuilder
  84. def nonEmpty: Boolean
    Definition Classes
    TraversableOnce → GenTraversableOnce
  85. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  86. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  87. def par: ParIterable[SymbolTable.Symbol]
    Definition Classes
    Parallelizable
  88. def parCombiner: Combiner[SymbolTable.Symbol, ParIterable[SymbolTable.Symbol]]
    Attributes
    protected[this]
    Definition Classes
    TraversableLike → Parallelizable
  89. def partition(p: (SymbolTable.Symbol) ⇒ Boolean): (collection.Iterable[SymbolTable.Symbol], collection.Iterable[SymbolTable.Symbol])
    Definition Classes
    TraversableLike → GenTraversableLike
  90. def product[B >: SymbolTable.Symbol](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def reduce[A1 >: SymbolTable.Symbol](op: (A1, A1) ⇒ A1): A1
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def reduceLeft[B >: SymbolTable.Symbol](op: (B, SymbolTable.Symbol) ⇒ B): B
    Definition Classes
    TraversableOnce
  93. def reduceLeftOption[B >: SymbolTable.Symbol](op: (B, SymbolTable.Symbol) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def reduceOption[A1 >: SymbolTable.Symbol](op: (A1, A1) ⇒ A1): Option[A1]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  95. def reduceRight[B >: SymbolTable.Symbol](op: (SymbolTable.Symbol, B) ⇒ B): B
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  96. def reduceRightOption[B >: SymbolTable.Symbol](op: (SymbolTable.Symbol, B) ⇒ B): Option[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  97. def rehash(sym: SymbolTable.Symbol, newname: SymbolTable.Name): Unit
    Definition Classes
    Scope
  98. def repr: collection.Iterable[SymbolTable.Symbol]
    Definition Classes
    TraversableLike → GenTraversableLike
  99. def reversed: List[SymbolTable.Symbol]
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  100. def sameElements[B >: SymbolTable.Symbol](that: GenIterable[B]): Boolean
    Definition Classes
    IterableLike → GenIterableLike
  101. def scan[B >: SymbolTable.Symbol, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[collection.Iterable[SymbolTable.Symbol], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  102. def scanLeft[B, That](z: B)(op: (B, SymbolTable.Symbol) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[SymbolTable.Symbol], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
  103. def scanRight[B, That](z: B)(op: (SymbolTable.Symbol, B) ⇒ B)(implicit bf: CanBuildFrom[collection.Iterable[SymbolTable.Symbol], B, That]): That
    Definition Classes
    TraversableLike → GenTraversableLike
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The behavior of scanRight has changed. The previous behavior can be reproduced with scanRight.reverse.

  104. def seq: collection.Iterable[SymbolTable.Symbol]
    Definition Classes
    Iterable → GenIterable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  105. def size: Int

    the number of entries in this scope

    the number of entries in this scope

    Definition Classes
    Scope → GenTraversableLike → TraversableOnce → GenTraversableOnce
  106. def sizeHintIfCheap: Int
    Attributes
    protected[collection]
    Definition Classes
    GenTraversableOnce
  107. def slice(from: Int, until: Int): collection.Iterable[SymbolTable.Symbol]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  108. def sliding(size: Int, step: Int): collection.Iterator[collection.Iterable[SymbolTable.Symbol]]
    Definition Classes
    IterableLike
  109. def sliding(size: Int): collection.Iterator[collection.Iterable[SymbolTable.Symbol]]
    Definition Classes
    IterableLike
  110. def sorted: List[SymbolTable.Symbol]

    Vanilla scope - symbols are stored in declaration order.

    Vanilla scope - symbols are stored in declaration order.

    Definition Classes
    ScopeMemberScopeApi
  111. def span(p: (SymbolTable.Symbol) ⇒ Boolean): (collection.Iterable[SymbolTable.Symbol], collection.Iterable[SymbolTable.Symbol])
    Definition Classes
    TraversableLike → GenTraversableLike
  112. def splitAt(n: Int): (collection.Iterable[SymbolTable.Symbol], collection.Iterable[SymbolTable.Symbol])
    Definition Classes
    TraversableLike → GenTraversableLike
  113. def stringPrefix: String
    Definition Classes
    TraversableLike → GenTraversableLike
  114. def sum[B >: SymbolTable.Symbol](implicit num: Numeric[B]): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
  115. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  116. def tail: collection.Iterable[SymbolTable.Symbol]
    Definition Classes
    TraversableLike → GenTraversableLike
  117. def tails: collection.Iterator[collection.Iterable[SymbolTable.Symbol]]
    Definition Classes
    TraversableLike
  118. def take(n: Int): collection.Iterable[SymbolTable.Symbol]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  119. def takeRight(n: Int): collection.Iterable[SymbolTable.Symbol]
    Definition Classes
    IterableLike
  120. def takeWhile(p: (SymbolTable.Symbol) ⇒ Boolean): collection.Iterable[SymbolTable.Symbol]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  121. def thisCollection: collection.Iterable[SymbolTable.Symbol]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  122. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, SymbolTable.Symbol, Col[SymbolTable.Symbol]]): Col[SymbolTable.Symbol]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  123. def toArray[B >: SymbolTable.Symbol](implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def toBuffer[B >: SymbolTable.Symbol]: Buffer[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  125. def toCollection(repr: collection.Iterable[SymbolTable.Symbol]): collection.Iterable[SymbolTable.Symbol]
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  126. def toIndexedSeq: collection.immutable.IndexedSeq[SymbolTable.Symbol]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def toIterable: collection.Iterable[SymbolTable.Symbol]
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  128. def toIterator: collection.Iterator[SymbolTable.Symbol]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  129. def toList: List[SymbolTable.Symbol]

    Return all symbols as a list in the order they were entered in this scope.

    Return all symbols as a list in the order they were entered in this scope.

    Definition Classes
    Scope → TraversableOnce → GenTraversableOnce
  130. def toMap[T, U](implicit ev: <:<[SymbolTable.Symbol, (T, U)]): Map[T, U]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  131. def toSeq: collection.Seq[SymbolTable.Symbol]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  132. def toSet[B >: SymbolTable.Symbol]: Set[B]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  133. def toStream: collection.immutable.Stream[SymbolTable.Symbol]
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  134. def toString(): String
    Definition Classes
    Scope → TraversableLike → AnyRef → Any
  135. def toTraversable: collection.Traversable[SymbolTable.Symbol]
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  136. def toVector: Vector[SymbolTable.Symbol]
    Definition Classes
    TraversableOnce → GenTraversableOnce
  137. def transpose[B](implicit asTraversable: (SymbolTable.Symbol) ⇒ GenTraversableOnce[B]): collection.Iterable[collection.Iterable[B]]
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) transpose throws an IllegalArgumentException if collections are not uniformly sized.

  138. def unlink(sym: SymbolTable.Symbol): Unit

    remove symbol

    remove symbol

    Definition Classes
    Scope
  139. def unlink(e: SymbolTable.ScopeEntry): Unit

    remove entry

    remove entry

    Definition Classes
    Scope
  140. def unzip[A1, A2](implicit asPair: (SymbolTable.Symbol) ⇒ (A1, A2)): (collection.Iterable[A1], collection.Iterable[A2])
    Definition Classes
    GenericTraversableTemplate
  141. def unzip3[A1, A2, A3](implicit asTriple: (SymbolTable.Symbol) ⇒ (A1, A2, A3)): (collection.Iterable[A1], collection.Iterable[A2], collection.Iterable[A3])
    Definition Classes
    GenericTraversableTemplate
  142. def view(from: Int, until: Int): IterableView[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]]
    Definition Classes
    IterableLike → TraversableLike
  143. def view: IterableView[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]]
    Definition Classes
    IterableLike → TraversableLike
  144. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  145. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  146. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  147. def withFilter(p: (SymbolTable.Symbol) ⇒ Boolean): FilterMonadic[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]]
    Definition Classes
    TraversableLike → FilterMonadic
  148. def zip[A1 >: SymbolTable.Symbol, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[collection.Iterable[SymbolTable.Symbol], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  149. def zipAll[B, A1 >: SymbolTable.Symbol, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[collection.Iterable[SymbolTable.Symbol], (A1, B), That]): That
    Definition Classes
    IterableLike → GenIterableLike
  150. def zipWithIndex[A1 >: SymbolTable.Symbol, That](implicit bf: CanBuildFrom[collection.Iterable[SymbolTable.Symbol], (A1, Int), That]): That
    Definition Classes
    IterableLike → GenIterableLike

Deprecated Value Members

  1. def /:[B](z: B)(op: (B, SymbolTable.Symbol) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldLeft instead of /:

  2. def :\[B](z: B)(op: (SymbolTable.Symbol, B) ⇒ B): B
    Definition Classes
    TraversableOnce → GenTraversableOnce
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.10) Use foldRight instead of :\

  3. def reverse: List[SymbolTable.Symbol]
    Definition Classes
    Scope
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use toList.reverse instead

Inherited from SymbolTable.Scope

Inherited from SymbolTable.ScopeApi

Inherited from collection.Iterable[SymbolTable.Symbol]

Inherited from IterableLike[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]]

Inherited from Equals

Inherited from GenIterable[SymbolTable.Symbol]

Inherited from GenIterableLike[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]]

Inherited from collection.Traversable[SymbolTable.Symbol]

Inherited from GenTraversable[SymbolTable.Symbol]

Inherited from GenericTraversableTemplate[SymbolTable.Symbol, collection.Iterable]

Inherited from TraversableLike[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]]

Inherited from GenTraversableLike[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]]

Inherited from Parallelizable[SymbolTable.Symbol, ParIterable[SymbolTable.Symbol]]

Inherited from collection.TraversableOnce[SymbolTable.Symbol]

Inherited from GenTraversableOnce[SymbolTable.Symbol]

Inherited from FilterMonadic[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]]

Inherited from HasNewBuilder[SymbolTable.Symbol, collection.Iterable[SymbolTable.Symbol]]

Inherited from AnyRef

Inherited from Any

Ungrouped