scala.scalajs.runtime

Long

final class Long extends AnyRef

emulate a Java-Long using three integers. taken from gwt LongLib: com.google.gwt.lang.LongLib

only used by runtime

holds values l, m, h (low, middle, high) s.t. (x.l + ((long) x.m << 22) + ((long) x.h << 44)) is equal to the original value

Self Type
Long
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Long
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

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

    Definition Classes
    AnyRef → Any
  3. def %(y: Long): Long

  4. def &(y: Long): Long

  5. def *(y: Long): Long

  6. def +(y: Long): Long

  7. def +(y: String): String

  8. def -(y: Long): Long

    subtraction note: gwt implements this individually

  9. def /(y: Long): Long

  10. def <(y: Long): Boolean

  11. def <<(n_in: Int): Long

  12. def <=(y: Long): Boolean

  13. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  14. def >(y: Long): Boolean

  15. def >=(y: Long): Boolean

    greater or equal.

    greater or equal. note: gwt implements this individually

  16. def >>(n_in: Int): Long

    arithmetic right shift

  17. def >>>(n_in: Int): Long

    logical right shift

  18. def ^(y: Long): Long

  19. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  20. def bitCount: Int

  21. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    Long → AnyRef → Any
  24. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  26. val h: Int

  27. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  28. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  29. val l: Int

  30. val m: Int

  31. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  32. def notEquals(that: Any): Boolean

  33. final def notify(): Unit

    Definition Classes
    AnyRef
  34. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  35. def numberOfLeadingZeros: Int

  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  37. def toBinaryString: String

  38. def toByte: Byte

  39. def toChar: Char

  40. def toDouble: Double

  41. def toFloat: Float

  42. def toHexString: String

  43. def toInt: Int

  44. def toLong: Long

  45. def toOctalString: String

  46. def toShort: Short

  47. def toString(): String

    Definition Classes
    Long → AnyRef → Any
  48. def unary_+: Long

  49. def unary_-: Long

  50. def unary_~: Long

  51. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. def |(y: Long): Long

Inherited from AnyRef

Inherited from Any

Ungrouped