trait BitSetMonoTransforms[+C <: BitSet] extends SetMonoTransforms[Int, C]
- Alphabetic
- By Inheritance
- BitSetMonoTransforms
- SetMonoTransforms
- IterableMonoTransforms
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
&(that: Set[Int]): C
- Definition Classes
- SetMonoTransforms
-
abstract
def
++(that: Set[Int]): C
- Definition Classes
- SetMonoTransforms
-
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.
-
abstract
def
coll: Iterable[Int]
- Attributes
- protected
- Definition Classes
- IterableMonoTransforms
-
abstract
def
fromIterableWithSameElemType(coll: Iterable[Int]): C
- Attributes
- protected[this]
- Definition Classes
- IterableMonoTransforms
-
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
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
drop(n: Int): C
The rest of the collection without its
nfirst elements.The rest of the collection without its
nfirst elements. For linear, immutable collections this should avoid making a copy.- Definition Classes
- IterableMonoTransforms
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
filter(p: (Int) ⇒ Boolean): C
All elements satisfying predicate
pAll elements satisfying predicate
p- Definition Classes
- IterableMonoTransforms
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
def
partition(p: (Int) ⇒ Boolean): (C, C)
A pair of, first, all elements that satisfy prediacte
pand, second, all elements that do not.A pair of, first, all elements that satisfy prediacte
pand, 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
partitioninBuildable, which requires only a single traversal.- Definition Classes
- IterableMonoTransforms
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
tail: C
The rest of the collection without its first element.
The rest of the collection without its first element.
- Definition Classes
- IterableMonoTransforms
-
def
take(n: Int): C
A collection containing the first
nelements of this collection.A collection containing the first
nelements of this collection.- Definition Classes
- IterableMonoTransforms
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )