Object

scala.tools.nsc.backend.icode.analysis.Liveness.livenessLattice

top

Related Doc: package livenessLattice

Permalink

object top extends ListSet[Global.icodes.Local] with ReferenceEquality

Return the top element.

Definition Classes
livenessLatticeSemiLattice
Source
Liveness.scala
Linear Supertypes
ReferenceEquality, ListSet[Global.icodes.Local], Serializable, java.io.Serializable, Set[Global.icodes.Local], collection.immutable.Iterable[Global.icodes.Local], collection.immutable.Traversable[Global.icodes.Local], Immutable, AbstractSet[Global.icodes.Local], Set[Global.icodes.Local], SetLike[Global.icodes.Local, ListSet[Global.icodes.Local]], Subtractable[Global.icodes.Local, ListSet[Global.icodes.Local]], GenSet[Global.icodes.Local], GenericSetTemplate[Global.icodes.Local, ListSet], GenSetLike[Global.icodes.Local, ListSet[Global.icodes.Local]], (Global.icodes.Local) ⇒ Boolean, AbstractIterable[Global.icodes.Local], collection.Iterable[Global.icodes.Local], IterableLike[Global.icodes.Local, ListSet[Global.icodes.Local]], Equals, GenIterable[Global.icodes.Local], GenIterableLike[Global.icodes.Local, ListSet[Global.icodes.Local]], AbstractTraversable[Global.icodes.Local], collection.Traversable[Global.icodes.Local], GenTraversable[Global.icodes.Local], GenericTraversableTemplate[Global.icodes.Local, ListSet], TraversableLike[Global.icodes.Local, ListSet[Global.icodes.Local]], GenTraversableLike[Global.icodes.Local, ListSet[Global.icodes.Local]], Parallelizable[Global.icodes.Local, ParSet[Global.icodes.Local]], collection.TraversableOnce[Global.icodes.Local], GenTraversableOnce[Global.icodes.Local], FilterMonadic[Global.icodes.Local, ListSet[Global.icodes.Local]], HasNewBuilder[Global.icodes.Local, ListSet[Global.icodes.Local]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. top
  2. ReferenceEquality
  3. ListSet
  4. Serializable
  5. Serializable
  6. Set
  7. Iterable
  8. Traversable
  9. Immutable
  10. AbstractSet
  11. Set
  12. SetLike
  13. Subtractable
  14. GenSet
  15. GenericSetTemplate
  16. GenSetLike
  17. Function1
  18. AbstractIterable
  19. Iterable
  20. IterableLike
  21. Equals
  22. GenIterable
  23. GenIterableLike
  24. AbstractTraversable
  25. Traversable
  26. GenTraversable
  27. GenericTraversableTemplate
  28. TraversableLike
  29. GenTraversableLike
  30. Parallelizable
  31. TraversableOnce
  32. GenTraversableOnce
  33. FilterMonadic
  34. HasNewBuilder
  35. AnyRef
  36. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class Node extends ListSet[A] with Serializable

    Permalink
    Attributes
    protected
    Definition Classes
    ListSet
  2. type Self = ListSet[Global.icodes.Local]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableLike
  3. class WithFilter extends FilterMonadic[A, Repr]

    Permalink
    Definition Classes
    TraversableLike

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

    Definition Classes
    AnyRef → Any
  3. def &(that: GenSet[Global.icodes.Local]): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    GenSetLike
  4. def &~(that: GenSet[Global.icodes.Local]): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    GenSetLike
  5. def +(elem: Global.icodes.Local): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    ListSet → SetLike → GenSetLike
  6. def +(elem1: Global.icodes.Local, elem2: Global.icodes.Local, elems: Global.icodes.Local*): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    SetLike
  7. def ++(xs: GenTraversableOnce[Global.icodes.Local]): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    ListSet → SetLike
  8. def ++[B >: Global.icodes.Local, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[ListSet[Global.icodes.Local], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  9. def ++:[B >: Global.icodes.Local, That](that: collection.Traversable[B])(implicit bf: CanBuildFrom[ListSet[Global.icodes.Local], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  10. def ++:[B >: Global.icodes.Local, That](that: collection.TraversableOnce[B])(implicit bf: CanBuildFrom[ListSet[Global.icodes.Local], B, That]): That

    Permalink
    Definition Classes
    TraversableLike
  11. def -(elem: Global.icodes.Local): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    ListSet → SetLike → Subtractable → GenSetLike
  12. def -(elem1: Global.icodes.Local, elem2: Global.icodes.Local, elems: Global.icodes.Local*): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    Subtractable
  13. def --(xs: GenTraversableOnce[Global.icodes.Local]): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    Subtractable
  14. def /:[B](z: B)(op: (B, Global.icodes.Local) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  15. def :\[B](z: B)(op: (Global.icodes.Local, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  16. final def ==(arg0: Any): Boolean

    Permalink

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  17. def addString(b: StringBuilder): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  18. def addString(b: StringBuilder, sep: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  19. def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder

    Permalink
    Definition Classes
    TraversableOnce
  20. def aggregate[B](z: ⇒ B)(seqop: (B, Global.icodes.Local) ⇒ B, combop: (B, B) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  21. def andThen[A](g: (Boolean) ⇒ A): (Global.icodes.Local) ⇒ A

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  22. def apply(elem: Global.icodes.Local): Boolean

    Permalink
    Definition Classes
    GenSetLike → Function1
  23. final def asInstanceOf[T0]: T0

    Permalink

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown

    ClassCastException if the receiver object is not an instance of the erasure of type T0.

  24. def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    IterableLike → Equals
  25. def clone(): AnyRef

    Permalink

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
    Note

    not specified by SLS as a member of AnyRef

  26. def collect[B, That](pf: PartialFunction[Global.icodes.Local, B])(implicit bf: CanBuildFrom[ListSet[Global.icodes.Local], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  27. def collectFirst[B](pf: PartialFunction[Global.icodes.Local, B]): Option[B]

    Permalink
    Definition Classes
    TraversableOnce
  28. def companion: GenericCompanion[ListSet]

    Permalink
    Definition Classes
    ListSet → Set → Iterable → Traversable → Set → GenSet → Iterable → GenIterable → Traversable → GenTraversable → GenericTraversableTemplate
  29. def compose[A](g: (A) ⇒ Global.icodes.Local): (A) ⇒ Boolean

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  30. def contains(elem: Global.icodes.Local): Boolean

    Permalink
    Definition Classes
    ListSet → SetLike → GenSetLike
  31. def copyToArray[B >: Global.icodes.Local](xs: Array[B], start: Int, len: Int): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  32. def copyToArray[B >: Global.icodes.Local](xs: Array[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  33. def copyToArray[B >: Global.icodes.Local](xs: Array[B], start: Int): Unit

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  34. def copyToBuffer[B >: Global.icodes.Local](dest: Buffer[B]): Unit

    Permalink
    Definition Classes
    TraversableOnce
  35. def count(p: (Global.icodes.Local) ⇒ Boolean): Int

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  36. def diff(that: GenSet[Global.icodes.Local]): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    SetLike → GenSetLike
  37. def drop(n: Int): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  38. def dropRight(n: Int): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    IterableLike
  39. def dropWhile(p: (Global.icodes.Local) ⇒ Boolean): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  40. def empty: ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    GenericSetTemplate
  41. final def eq(arg0: AnyRef): Boolean

    Permalink

    Tests whether the argument (that) is a reference to the receiver object (this).

    Tests whether the argument (that) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  42. def equals(that: Any): Boolean

    Permalink

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in scala.Any.

    that

    the object to compare against this object for equality.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    ReferenceEquality → AnyRef → Any
  43. def exists(p: (Global.icodes.Local) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  44. def filter(p: (Global.icodes.Local) ⇒ Boolean): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  45. def filterNot(p: (Global.icodes.Local) ⇒ Boolean): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  46. def find(p: (Global.icodes.Local) ⇒ Boolean): Option[Global.icodes.Local]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  47. def flatMap[B, That](f: (Global.icodes.Local) ⇒ GenTraversableOnce[B])(implicit bf: CanBuildFrom[ListSet[Global.icodes.Local], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → FilterMonadic
  48. def flatten[B](implicit asTraversable: (Global.icodes.Local) ⇒ GenTraversableOnce[B]): ListSet[B]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  49. def fold[A1 >: Global.icodes.Local](z: A1)(op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  50. def foldLeft[B](z: B)(op: (B, Global.icodes.Local) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  51. def foldRight[B](z: B)(op: (Global.icodes.Local, B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  52. def forall(p: (Global.icodes.Local) ⇒ Boolean): Boolean

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  53. def foreach[U](f: (Global.icodes.Local) ⇒ U): Unit

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike → TraversableOnce → GenTraversableOnce → FilterMonadic
  54. def genericBuilder[B]: Builder[B, ListSet[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
  55. final def getClass(): Class[_]

    Permalink

    A representation that corresponds to the dynamic class of the receiver object.

    A representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
    Note

    not specified by SLS as a member of AnyRef

  56. def groupBy[K](f: (Global.icodes.Local) ⇒ K): Map[K, ListSet[Global.icodes.Local]]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  57. def grouped(size: Int): collection.Iterator[ListSet[Global.icodes.Local]]

    Permalink
    Definition Classes
    IterableLike
  58. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  59. def hashCode(): Int

    Permalink

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in scala.Any.

    returns

    the hash code value for this object.

    Definition Classes
    ReferenceEquality → AnyRef → Any
  60. def head: Global.icodes.Local

    Permalink
    Definition Classes
    ListSet → IterableLike → GenericTraversableTemplate → TraversableLike → GenTraversableLike
  61. def headOption: Option[Global.icodes.Local]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  62. def init: ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  63. def inits: collection.Iterator[ListSet[Global.icodes.Local]]

    Permalink
    Definition Classes
    TraversableLike
  64. def intersect(that: GenSet[Global.icodes.Local]): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    GenSetLike
  65. def isEmpty: Boolean

    Permalink
    Definition Classes
    ListSet → SetLike → IterableLike → GenericTraversableTemplate → TraversableLike → TraversableOnce → GenTraversableOnce
  66. final def isInstanceOf[T0]: Boolean

    Permalink

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  67. final def isTraversableAgain: Boolean

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike → GenTraversableOnce
  68. def iterator: collection.Iterator[Global.icodes.Local]

    Permalink
    Definition Classes
    ListSet → GenSetLike → IterableLike → GenIterableLike
  69. def last: Global.icodes.Local

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  70. def lastOption: Option[Global.icodes.Local]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  71. def map[B, That](f: (Global.icodes.Local) ⇒ B)(implicit bf: CanBuildFrom[ListSet[Global.icodes.Local], B, That]): That

    Permalink
    Definition Classes
    SetLike → TraversableLike → GenTraversableLike → FilterMonadic
    Annotations
    @migration
    Migration

    (Changed in version 2.8.0) Set.map now returns a Set, so it will discard duplicate values.

  72. def max[B >: Global.icodes.Local](implicit cmp: Ordering[B]): Global.icodes.Local

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  73. def maxBy[B](f: (Global.icodes.Local) ⇒ B)(implicit cmp: Ordering[B]): Global.icodes.Local

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  74. def min[B >: Global.icodes.Local](implicit cmp: Ordering[B]): Global.icodes.Local

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  75. def minBy[B](f: (Global.icodes.Local) ⇒ B)(implicit cmp: Ordering[B]): Global.icodes.Local

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  76. def mkString: String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  77. def mkString(sep: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  78. def mkString(start: String, sep: String, end: String): String

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  79. final def ne(arg0: AnyRef): Boolean

    Permalink

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  80. def newBuilder: Builder[Global.icodes.Local, ListSet[Global.icodes.Local]]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    SetLike → TraversableLike → HasNewBuilder
  81. def nonEmpty: Boolean

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  82. final def notify(): Unit

    Permalink

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
    Note

    not specified by SLS as a member of AnyRef

  83. final def notifyAll(): Unit

    Permalink

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
    Note

    not specified by SLS as a member of AnyRef

  84. def par: ParSet[Global.icodes.Local]

    Permalink
    Definition Classes
    Parallelizable
  85. def parCombiner: Combiner[Global.icodes.Local, ParSet[Global.icodes.Local]]

    Permalink
    Attributes
    protected
    Definition Classes
    Set → SetLike → Iterable → TraversableLike → Parallelizable
  86. def partition(p: (Global.icodes.Local) ⇒ Boolean): (ListSet[Global.icodes.Local], ListSet[Global.icodes.Local])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  87. def product[B >: Global.icodes.Local](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  88. def reduce[A1 >: Global.icodes.Local](op: (A1, A1) ⇒ A1): A1

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  89. def reduceLeft[B >: Global.icodes.Local](op: (B, Global.icodes.Local) ⇒ B): B

    Permalink
    Definition Classes
    TraversableOnce
  90. def reduceLeftOption[B >: Global.icodes.Local](op: (B, Global.icodes.Local) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  91. def reduceOption[A1 >: Global.icodes.Local](op: (A1, A1) ⇒ A1): Option[A1]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  92. def reduceRight[B >: Global.icodes.Local](op: (Global.icodes.Local, B) ⇒ B): B

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  93. def reduceRightOption[B >: Global.icodes.Local](op: (Global.icodes.Local, B) ⇒ B): Option[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  94. def repr: ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  95. def reversed: List[Global.icodes.Local]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    TraversableOnce
  96. def sameElements[B >: Global.icodes.Local](that: GenIterable[B]): Boolean

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  97. def scan[B >: Global.icodes.Local, That](z: B)(op: (B, B) ⇒ B)(implicit cbf: CanBuildFrom[ListSet[Global.icodes.Local], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  98. def scanLeft[B, That](z: B)(op: (B, Global.icodes.Local) ⇒ B)(implicit bf: CanBuildFrom[ListSet[Global.icodes.Local], B, That]): That

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  99. def scanRight[B, That](z: B)(op: (Global.icodes.Local, B) ⇒ B)(implicit bf: CanBuildFrom[ListSet[Global.icodes.Local], B, That]): That

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

  100. def seq: Set[Global.icodes.Local]

    Permalink
    Definition Classes
    Set → Set → GenSet → GenSetLike → Iterable → Iterable → GenIterable → Traversable → Traversable → GenTraversable → Parallelizable → TraversableOnce → GenTraversableOnce
  101. def size: Int

    Permalink
    Definition Classes
    ListSet → GenTraversableLike → TraversableOnce → GenTraversableOnce
  102. def slice(from: Int, until: Int): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  103. def sliding(size: Int, step: Int): collection.Iterator[ListSet[Global.icodes.Local]]

    Permalink
    Definition Classes
    IterableLike
  104. def sliding(size: Int): collection.Iterator[ListSet[Global.icodes.Local]]

    Permalink
    Definition Classes
    IterableLike
  105. def span(p: (Global.icodes.Local) ⇒ Boolean): (ListSet[Global.icodes.Local], ListSet[Global.icodes.Local])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  106. def splitAt(n: Int): (ListSet[Global.icodes.Local], ListSet[Global.icodes.Local])

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  107. def stringPrefix: String

    Permalink
    Definition Classes
    ListSet → SetLike → TraversableLike → GenTraversableLike
  108. def subsetOf(that: GenSet[Global.icodes.Local]): Boolean

    Permalink
    Definition Classes
    GenSetLike
  109. def subsets(): collection.Iterator[ListSet[Global.icodes.Local]]

    Permalink
    Definition Classes
    SetLike
  110. def subsets(len: Int): collection.Iterator[ListSet[Global.icodes.Local]]

    Permalink
    Definition Classes
    SetLike
  111. def sum[B >: Global.icodes.Local](implicit num: Numeric[B]): B

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  112. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  113. def tail: ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    ListSet → TraversableLike → GenTraversableLike
  114. def tails: collection.Iterator[ListSet[Global.icodes.Local]]

    Permalink
    Definition Classes
    TraversableLike
  115. def take(n: Int): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  116. def takeRight(n: Int): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    IterableLike
  117. def takeWhile(p: (Global.icodes.Local) ⇒ Boolean): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableLike
  118. def thisCollection: collection.Iterable[Global.icodes.Local]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  119. def to[Col[_]](implicit cbf: CanBuildFrom[Nothing, Global.icodes.Local, Col[Global.icodes.Local]]): Col[Global.icodes.Local]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  120. def toArray[B >: Global.icodes.Local](implicit arg0: ClassTag[B]): Array[B]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  121. def toBuffer[A1 >: Global.icodes.Local]: Buffer[A1]

    Permalink
    Definition Classes
    SetLike → TraversableOnce → GenTraversableOnce
  122. def toCollection(repr: ListSet[Global.icodes.Local]): collection.Iterable[Global.icodes.Local]

    Permalink
    Attributes
    protected[this]
    Definition Classes
    IterableLike → TraversableLike
  123. def toIndexedSeq: collection.immutable.IndexedSeq[Global.icodes.Local]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  124. def toIterable: collection.Iterable[Global.icodes.Local]

    Permalink
    Definition Classes
    IterableLike → TraversableOnce → GenTraversableOnce
  125. def toIterator: collection.Iterator[Global.icodes.Local]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  126. def toList: List[Global.icodes.Local]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  127. def toMap[T, U](implicit ev: <:<[Global.icodes.Local, (T, U)]): Map[T, U]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  128. def toSeq: collection.Seq[Global.icodes.Local]

    Permalink
    Definition Classes
    SetLike → TraversableOnce → GenTraversableOnce
  129. def toSet[B >: Global.icodes.Local]: Set[B]

    Permalink
    Definition Classes
    ListSet → Set → TraversableOnce → GenTraversableOnce
  130. def toStream: collection.immutable.Stream[Global.icodes.Local]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  131. def toString(): String

    Permalink

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    SetLike → Function1 → TraversableLike → AnyRef → Any
  132. def toTraversable: collection.Traversable[Global.icodes.Local]

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
    Annotations
    @deprecatedOverriding( ... , "2.11.0" )
  133. def toVector: Vector[Global.icodes.Local]

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  134. def transpose[B](implicit asTraversable: (Global.icodes.Local) ⇒ GenTraversableOnce[B]): ListSet[ListSet[B]]

    Permalink
    Definition Classes
    GenericTraversableTemplate
    Annotations
    @migration
    Migration

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

  135. def union(that: GenSet[Global.icodes.Local]): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    SetLike → GenSetLike
  136. def unzip[A1, A2](implicit asPair: (Global.icodes.Local) ⇒ (A1, A2)): (ListSet[A1], ListSet[A2])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  137. def unzip3[A1, A2, A3](implicit asTriple: (Global.icodes.Local) ⇒ (A1, A2, A3)): (ListSet[A1], ListSet[A2], ListSet[A3])

    Permalink
    Definition Classes
    GenericTraversableTemplate
  138. def view(from: Int, until: Int): IterableView[Global.icodes.Local, ListSet[Global.icodes.Local]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  139. def view: IterableView[Global.icodes.Local, ListSet[Global.icodes.Local]]

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  140. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  141. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  142. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  143. def withFilter(p: (Global.icodes.Local) ⇒ Boolean): FilterMonadic[Global.icodes.Local, ListSet[Global.icodes.Local]]

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  144. def zip[A1 >: Global.icodes.Local, B, That](that: GenIterable[B])(implicit bf: CanBuildFrom[ListSet[Global.icodes.Local], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  145. def zipAll[B, A1 >: Global.icodes.Local, That](that: GenIterable[B], thisElem: A1, thatElem: B)(implicit bf: CanBuildFrom[ListSet[Global.icodes.Local], (A1, B), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  146. def zipWithIndex[A1 >: Global.icodes.Local, That](implicit bf: CanBuildFrom[ListSet[Global.icodes.Local], (A1, Int), That]): That

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  147. def |(that: GenSet[Global.icodes.Local]): ListSet[Global.icodes.Local]

    Permalink
    Definition Classes
    GenSetLike

Deprecated Value Members

  1. def finalize(): Unit

    Permalink

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

    Note

    not specified by SLS as a member of AnyRef

Inherited from ReferenceEquality

Inherited from ListSet[Global.icodes.Local]

Inherited from Serializable

Inherited from java.io.Serializable

Inherited from Set[Global.icodes.Local]

Inherited from collection.immutable.Iterable[Global.icodes.Local]

Inherited from collection.immutable.Traversable[Global.icodes.Local]

Inherited from Immutable

Inherited from AbstractSet[Global.icodes.Local]

Inherited from Set[Global.icodes.Local]

Inherited from SetLike[Global.icodes.Local, ListSet[Global.icodes.Local]]

Inherited from Subtractable[Global.icodes.Local, ListSet[Global.icodes.Local]]

Inherited from GenSet[Global.icodes.Local]

Inherited from GenericSetTemplate[Global.icodes.Local, ListSet]

Inherited from GenSetLike[Global.icodes.Local, ListSet[Global.icodes.Local]]

Inherited from (Global.icodes.Local) ⇒ Boolean

Inherited from AbstractIterable[Global.icodes.Local]

Inherited from collection.Iterable[Global.icodes.Local]

Inherited from IterableLike[Global.icodes.Local, ListSet[Global.icodes.Local]]

Inherited from Equals

Inherited from GenIterable[Global.icodes.Local]

Inherited from GenIterableLike[Global.icodes.Local, ListSet[Global.icodes.Local]]

Inherited from AbstractTraversable[Global.icodes.Local]

Inherited from collection.Traversable[Global.icodes.Local]

Inherited from GenTraversable[Global.icodes.Local]

Inherited from GenericTraversableTemplate[Global.icodes.Local, ListSet]

Inherited from TraversableLike[Global.icodes.Local, ListSet[Global.icodes.Local]]

Inherited from GenTraversableLike[Global.icodes.Local, ListSet[Global.icodes.Local]]

Inherited from Parallelizable[Global.icodes.Local, ParSet[Global.icodes.Local]]

Inherited from collection.TraversableOnce[Global.icodes.Local]

Inherited from GenTraversableOnce[Global.icodes.Local]

Inherited from FilterMonadic[Global.icodes.Local, ListSet[Global.icodes.Local]]

Inherited from HasNewBuilder[Global.icodes.Local, ListSet[Global.icodes.Local]]

Inherited from AnyRef

Inherited from Any

Ungrouped