trait LongSet[T <: LongSet[T]] extends AnyRef
A set of long values.
- Self Type
- T
- Alphabetic
- By Inheritance
- LongSet
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Abstract Value Members
- abstract def +(i: Long): T
- abstract def -(i: Long): T
- abstract def contains(value: Long): Boolean
- abstract def exists(p: (Long) ⇒ Boolean): Boolean
- abstract def flatMap(f: (Long) ⇒ T): T
- abstract def foldLeft[B](z: B)(f: (B, Long) ⇒ B): B
- abstract def forall(f: (Long) ⇒ Boolean): Boolean
- abstract def foreach[U](f: (Long) ⇒ U): Unit
-
abstract
def
hasMultipleElements: Boolean
Tests if this set has more than one element (complexity: O(1)).
- abstract def head: Long
- abstract def isEmpty: Boolean
-
abstract
def
isSingletonSet: Boolean
Tests if this set has exactly one element (complexity: O(1)).
- abstract def iterator: LongIterator
- abstract def map(f: (Long) ⇒ Long): T
-
abstract
def
size: Int
The size of the set; may not be a constant operation; if possible use isEmpty, nonEmpty, etc.; or lookup the complexity in the concrete data structures.
- abstract def withFilter(p: (Long) ⇒ Boolean): T
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
- final def ++(that: LongIterator): T
- final def ++(that: TraversableOnce[Long]): T
- final def ++(that: T): T
- final def --(is: LongSet[_]): T
- final def --(is: TraversableOnce[Long]): T
-
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
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[A <: AnyRef](f: (Long) ⇒ A): Set[A]
- final def mkString(in: String): String
- final def mkString(pre: String, in: String, post: String): String
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def nonEmpty: Boolean
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- final def transform[B, To](f: (Long) ⇒ B, b: Builder[B, To]): To
-
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
- @native() @throws( ... )