Object

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

bottom

Related Doc: package livenessLattice

Permalink

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

Return the bottom 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. bottom
  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
    @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 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
    @throws( classOf[java.lang.Throwable] )
    Note

    not specified by SLS as a member of AnyRef

  47. def find(p: (Global.icodes.Local) ⇒ Boolean): Option[Global.icodes.Local]

    Permalink
    Definition Classes
    IterableLike → TraversableLike → TraversableOnce → GenTraversableOnce
  48. 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
  49. def flatten[B](implicit asTraversable: (Global.icodes.Local) ⇒ GenTraversableOnce[B]): ListSet[B]

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

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

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

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

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

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

    Permalink
    Definition Classes
    GenericTraversableTemplate
  56. 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
    Note

    not specified by SLS as a member of AnyRef

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

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

    Permalink
    Definition Classes
    IterableLike
  59. def hasDefiniteSize: Boolean

    Permalink
    Definition Classes
    TraversableLike → TraversableOnce → GenTraversableOnce
  60. 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
  61. def head: Global.icodes.Local

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

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

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

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

    Permalink
    Definition Classes
    GenSetLike
  66. def isEmpty: Boolean

    Permalink
    Definition Classes
    ListSet → SetLike → IterableLike → GenericTraversableTemplate → TraversableLike → TraversableOnce → GenTraversableOnce
  67. 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
  68. final def isTraversableAgain: Boolean

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

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

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

    Permalink
    Definition Classes
    TraversableLike → GenTraversableLike
  72. 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.

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  80. 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
  81. def newBuilder: Builder[Global.icodes.Local, ListSet[Global.icodes.Local]]

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  83. 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
    Note

    not specified by SLS as a member of AnyRef

  84. 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
    Note

    not specified by SLS as a member of AnyRef

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    IterableLike → GenIterableLike
  98. 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
  99. 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
  100. 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.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    IterableLike → TraversableLike → GenTraversableOnce
  132. 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
  133. def toTraversable: collection.Traversable[Global.icodes.Local]

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

    Permalink
    Definition Classes
    TraversableOnce → GenTraversableOnce
  135. 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.

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

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

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

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

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

    Permalink
    Definition Classes
    IterableLike → TraversableLike
  141. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  142. final def wait(arg0: Long, arg1: Int): Unit

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

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

    Permalink
    Definition Classes
    TraversableLike → FilterMonadic
  145. 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
  146. 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
  147. def zipWithIndex[A1 >: Global.icodes.Local, That](implicit bf: CanBuildFrom[ListSet[Global.icodes.Local], (A1, Int), That]): That

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

    Permalink
    Definition Classes
    GenSetLike

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