Packages

t

strawman.collection

BitSetMonoTransforms

trait BitSetMonoTransforms[+C <: BitSet] extends SetMonoTransforms[Int, C]

Linear Supertypes
SetMonoTransforms[Int, C], IterableMonoTransforms[Int, C], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BitSetMonoTransforms
  2. SetMonoTransforms
  3. IterableMonoTransforms
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def &(that: Set[Int]): C
    Definition Classes
    SetMonoTransforms
  2. abstract def ++(that: Set[Int]): C
    Definition Classes
    SetMonoTransforms
  3. abstract def ^(other: BitSet): C

    Computes the symmetric difference of this bitset and another bitset by performing a bitwise “exclusive-or”.

    Computes the symmetric difference of this bitset and another bitset by performing a bitwise “exclusive-or”.

    other

    the other bitset to take part in the symmetric difference.

    returns

    a bitset containing those bits of this bitset or the other bitset that are not contained in both bitsets.

  4. abstract def coll: Iterable[Int]
    Attributes
    protected
    Definition Classes
    IterableMonoTransforms
  5. abstract def fromIterableWithSameElemType(coll: Iterable[Int]): C
    Attributes
    protected[this]
    Definition Classes
    IterableMonoTransforms
  6. abstract def map(f: (Int) ⇒ Int): C

    Builds a new bitset by applying a function to all elements of this bitset

    Builds a new bitset by applying a function to all elements of this bitset

    f

    the function to apply to each element.

    returns

    a new bitset resulting from applying the given function f to each element of this bitset and collecting the results

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def drop(n: Int): C

    The rest of the collection without its n first elements.

    The rest of the collection without its n first elements. For linear, immutable collections this should avoid making a copy.

    Definition Classes
    IterableMonoTransforms
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def filter(p: (Int) ⇒ Boolean): C

    All elements satisfying predicate p

    All elements satisfying predicate p

    Definition Classes
    IterableMonoTransforms
  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  17. def partition(p: (Int) ⇒ Boolean): (C, C)

    A pair of, first, all elements that satisfy prediacte p and, second, all elements that do not.

    A pair of, first, all elements that satisfy prediacte p and, second, all elements that do not. Interesting because it splits a collection in two.

    The default implementation provided here needs to traverse the collection twice. Strict collections have an overridden version of partition in Buildable, which requires only a single traversal.

    Definition Classes
    IterableMonoTransforms
  18. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  19. def tail: C

    The rest of the collection without its first element.

    The rest of the collection without its first element.

    Definition Classes
    IterableMonoTransforms
  20. def take(n: Int): C

    A collection containing the first n elements of this collection.

    A collection containing the first n elements of this collection.

    Definition Classes
    IterableMonoTransforms
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from SetMonoTransforms[Int, C]

Inherited from IterableMonoTransforms[Int, C]

Inherited from AnyRef

Inherited from Any

Ungrouped