Scala Library: scala.Long
scala.Long
abstract final class Long extends AnyVal
Long
, a 64-bit signed integer (equivalent to Java’s long
primitive type)
is a subtype of scala.AnyVal. Instances of Long
are not represented by an
object in the underlying runtime system.
There is an implicit conversion from scala.Long => scala.runtime.RichLong which provides useful non-primitive operations.
Abstract Value Members From scala.Long
abstract def !=(x: Byte): Boolean
Returns true
if this value is not equal to x, false
otherwise.
(defined at scala.Long)
abstract def !=(x: Char): Boolean
Returns true
if this value is not equal to x, false
otherwise.
(defined at scala.Long)
abstract def !=(x: Double): Boolean
Returns true
if this value is not equal to x, false
otherwise.
(defined at scala.Long)
abstract def !=(x: Float): Boolean
Returns true
if this value is not equal to x, false
otherwise.
(defined at scala.Long)
abstract def !=(x: Int): Boolean
Returns true
if this value is not equal to x, false
otherwise.
(defined at scala.Long)
abstract def !=(x: Long): Boolean
Returns true
if this value is not equal to x, false
otherwise.
(defined at scala.Long)
abstract def !=(x: Short): Boolean
Returns true
if this value is not equal to x, false
otherwise.
(defined at scala.Long)
abstract def %(x: Byte): Long
Returns the remainder of the division of this value by x
.
(defined at scala.Long)
abstract def %(x: Char): Long
Returns the remainder of the division of this value by x
.
(defined at scala.Long)
abstract def %(x: Double): Double
Returns the remainder of the division of this value by x
.
(defined at scala.Long)
abstract def %(x: Float): Float
Returns the remainder of the division of this value by x
.
(defined at scala.Long)
abstract def %(x: Int): Long
Returns the remainder of the division of this value by x
.
(defined at scala.Long)
abstract def %(x: Long): Long
Returns the remainder of the division of this value by x
.
(defined at scala.Long)
abstract def %(x: Short): Long
Returns the remainder of the division of this value by x
.
(defined at scala.Long)
abstract def &(x: Byte): Long
Returns the bitwise AND of this value and x
.
Example:
(0xf0 & 0xaa) == 0xa0
// in binary: 11110000
// & 10101010
// --------
// 10100000
(defined at scala.Long)
abstract def &(x: Char): Long
Returns the bitwise AND of this value and x
.
Example:
(0xf0 & 0xaa) == 0xa0
// in binary: 11110000
// & 10101010
// --------
// 10100000
(defined at scala.Long)
abstract def &(x: Int): Long
Returns the bitwise AND of this value and x
.
Example:
(0xf0 & 0xaa) == 0xa0
// in binary: 11110000
// & 10101010
// --------
// 10100000
(defined at scala.Long)
abstract def &(x: Long): Long
Returns the bitwise AND of this value and x
.
Example:
(0xf0 & 0xaa) == 0xa0
// in binary: 11110000
// & 10101010
// --------
// 10100000
(defined at scala.Long)
abstract def &(x: Short): Long
Returns the bitwise AND of this value and x
.
Example:
(0xf0 & 0xaa) == 0xa0
// in binary: 11110000
// & 10101010
// --------
// 10100000
(defined at scala.Long)
abstract def *(x: Byte): Long
Returns the product of this value and x
.
(defined at scala.Long)
abstract def *(x: Char): Long
Returns the product of this value and x
.
(defined at scala.Long)
abstract def *(x: Double): Double
Returns the product of this value and x
.
(defined at scala.Long)
abstract def *(x: Float): Float
Returns the product of this value and x
.
(defined at scala.Long)
abstract def *(x: Int): Long
Returns the product of this value and x
.
(defined at scala.Long)
abstract def *(x: Long): Long
Returns the product of this value and x
.
(defined at scala.Long)
abstract def *(x: Short): Long
Returns the product of this value and x
.
(defined at scala.Long)
abstract def +(x: Byte): Long
Returns the sum of this value and x
.
(defined at scala.Long)
abstract def +(x: Char): Long
Returns the sum of this value and x
.
(defined at scala.Long)
abstract def +(x: Double): Double
Returns the sum of this value and x
.
(defined at scala.Long)
abstract def +(x: Float): Float
Returns the sum of this value and x
.
(defined at scala.Long)
abstract def +(x: Int): Long
Returns the sum of this value and x
.
(defined at scala.Long)
abstract def +(x: Long): Long
Returns the sum of this value and x
.
(defined at scala.Long)
abstract def +(x: Short): Long
Returns the sum of this value and x
.
(defined at scala.Long)
abstract def +(x: String): String
(defined at scala.Long)
abstract def -(x: Byte): Long
Returns the difference of this value and x
.
(defined at scala.Long)
abstract def -(x: Char): Long
Returns the difference of this value and x
.
(defined at scala.Long)
abstract def -(x: Double): Double
Returns the difference of this value and x
.
(defined at scala.Long)
abstract def -(x: Float): Float
Returns the difference of this value and x
.
(defined at scala.Long)
abstract def -(x: Int): Long
Returns the difference of this value and x
.
(defined at scala.Long)
abstract def -(x: Long): Long
Returns the difference of this value and x
.
(defined at scala.Long)
abstract def -(x: Short): Long
Returns the difference of this value and x
.
(defined at scala.Long)
abstract def /(x: Byte): Long
Returns the quotient of this value and x
.
(defined at scala.Long)
abstract def /(x: Char): Long
Returns the quotient of this value and x
.
(defined at scala.Long)
abstract def /(x: Double): Double
Returns the quotient of this value and x
.
(defined at scala.Long)
abstract def /(x: Float): Float
Returns the quotient of this value and x
.
(defined at scala.Long)
abstract def /(x: Int): Long
Returns the quotient of this value and x
.
(defined at scala.Long)
abstract def /(x: Long): Long
Returns the quotient of this value and x
.
(defined at scala.Long)
abstract def /(x: Short): Long
Returns the quotient of this value and x
.
(defined at scala.Long)
abstract def <(x: Byte): Boolean
Returns true
if this value is less than x, false
otherwise.
(defined at scala.Long)
abstract def <(x: Char): Boolean
Returns true
if this value is less than x, false
otherwise.
(defined at scala.Long)
abstract def <(x: Double): Boolean
Returns true
if this value is less than x, false
otherwise.
(defined at scala.Long)
abstract def <(x: Float): Boolean
Returns true
if this value is less than x, false
otherwise.
(defined at scala.Long)
abstract def <(x: Int): Boolean
Returns true
if this value is less than x, false
otherwise.
(defined at scala.Long)
abstract def <(x: Long): Boolean
Returns true
if this value is less than x, false
otherwise.
(defined at scala.Long)
abstract def <(x: Short): Boolean
Returns true
if this value is less than x, false
otherwise.
(defined at scala.Long)
abstract def <<(x: Int): Long
Returns this value bit-shifted left by the specified number of bits, filling in the new right bits with zeroes.
Example:
6 << 3 == 48 // in binary: 0110 << 3 == 0110000
(defined at scala.Long)
abstract def <<(x: Long): Long
Returns this value bit-shifted left by the specified number of bits, filling in the new right bits with zeroes.
Example:
6 << 3 == 48 // in binary: 0110 << 3 == 0110000
(defined at scala.Long)
abstract def <=(x: Byte): Boolean
Returns true
if this value is less than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def <=(x: Char): Boolean
Returns true
if this value is less than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def <=(x: Double): Boolean
Returns true
if this value is less than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def <=(x: Float): Boolean
Returns true
if this value is less than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def <=(x: Int): Boolean
Returns true
if this value is less than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def <=(x: Long): Boolean
Returns true
if this value is less than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def <=(x: Short): Boolean
Returns true
if this value is less than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def ==(x: Byte): Boolean
Returns true
if this value is equal to x, false
otherwise.
(defined at scala.Long)
abstract def ==(x: Char): Boolean
Returns true
if this value is equal to x, false
otherwise.
(defined at scala.Long)
abstract def ==(x: Double): Boolean
Returns true
if this value is equal to x, false
otherwise.
(defined at scala.Long)
abstract def ==(x: Float): Boolean
Returns true
if this value is equal to x, false
otherwise.
(defined at scala.Long)
abstract def ==(x: Int): Boolean
Returns true
if this value is equal to x, false
otherwise.
(defined at scala.Long)
abstract def ==(x: Long): Boolean
Returns true
if this value is equal to x, false
otherwise.
(defined at scala.Long)
abstract def ==(x: Short): Boolean
Returns true
if this value is equal to x, false
otherwise.
(defined at scala.Long)
abstract def >(x: Byte): Boolean
Returns true
if this value is greater than x, false
otherwise.
(defined at scala.Long)
abstract def >(x: Char): Boolean
Returns true
if this value is greater than x, false
otherwise.
(defined at scala.Long)
abstract def >(x: Double): Boolean
Returns true
if this value is greater than x, false
otherwise.
(defined at scala.Long)
abstract def >(x: Float): Boolean
Returns true
if this value is greater than x, false
otherwise.
(defined at scala.Long)
abstract def >(x: Int): Boolean
Returns true
if this value is greater than x, false
otherwise.
(defined at scala.Long)
abstract def >(x: Long): Boolean
Returns true
if this value is greater than x, false
otherwise.
(defined at scala.Long)
abstract def >(x: Short): Boolean
Returns true
if this value is greater than x, false
otherwise.
(defined at scala.Long)
abstract def >=(x: Byte): Boolean
Returns true
if this value is greater than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def >=(x: Char): Boolean
Returns true
if this value is greater than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def >=(x: Double): Boolean
Returns true
if this value is greater than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def >=(x: Float): Boolean
Returns true
if this value is greater than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def >=(x: Int): Boolean
Returns true
if this value is greater than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def >=(x: Long): Boolean
Returns true
if this value is greater than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def >=(x: Short): Boolean
Returns true
if this value is greater than or equal to x, false
otherwise.
(defined at scala.Long)
abstract def >>(x: Int): Long
Returns this value bit-shifted right by the specified number of bits, filling in the left bits with the same value as the left-most bit of this. The effect of this is to retain the sign of the value.
Example:
-21 >> 3 == -3
// in binary: 11111111 11111111 11111111 11101011 >> 3 ==
// 11111111 11111111 11111111 11111101
(defined at scala.Long)
abstract def >>(x: Long): Long
Returns this value bit-shifted right by the specified number of bits, filling in the left bits with the same value as the left-most bit of this. The effect of this is to retain the sign of the value.
Example:
-21 >> 3 == -3
// in binary: 11111111 11111111 11111111 11101011 >> 3 ==
// 11111111 11111111 11111111 11111101
(defined at scala.Long)
abstract def >>>(x: Int): Long
Returns this value bit-shifted right by the specified number of bits, filling the new left bits with zeroes.
Examples:
-21 >>> 3 == 536870909
// in binary: 11111111 11111111 11111111 11101011 >>> 3 ==
// 00011111 11111111 11111111 11111101 21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
(defined at scala.Long)
abstract def >>>(x: Long): Long
Returns this value bit-shifted right by the specified number of bits, filling the new left bits with zeroes.
Examples:
-21 >>> 3 == 536870909
// in binary: 11111111 11111111 11111111 11101011 >>> 3 ==
// 00011111 11111111 11111111 11111101 21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
(defined at scala.Long)
abstract def ^(x: Byte): Long
Returns the bitwise XOR of this value and x
.
Example:
(0xf0 ^ 0xaa) == 0x5a
// in binary: 11110000
// ^ 10101010
// --------
// 01011010
(defined at scala.Long)
abstract def ^(x: Char): Long
Returns the bitwise XOR of this value and x
.
Example:
(0xf0 ^ 0xaa) == 0x5a
// in binary: 11110000
// ^ 10101010
// --------
// 01011010
(defined at scala.Long)
abstract def ^(x: Int): Long
Returns the bitwise XOR of this value and x
.
Example:
(0xf0 ^ 0xaa) == 0x5a
// in binary: 11110000
// ^ 10101010
// --------
// 01011010
(defined at scala.Long)
abstract def ^(x: Long): Long
Returns the bitwise XOR of this value and x
.
Example:
(0xf0 ^ 0xaa) == 0x5a
// in binary: 11110000
// ^ 10101010
// --------
// 01011010
(defined at scala.Long)
abstract def ^(x: Short): Long
Returns the bitwise XOR of this value and x
.
Example:
(0xf0 ^ 0xaa) == 0x5a
// in binary: 11110000
// ^ 10101010
// --------
// 01011010
(defined at scala.Long)
abstract def |(x: Byte): Long
Returns the bitwise OR of this value and x
.
Example:
(0xf0 | 0xaa) == 0xfa
// in binary: 11110000
// | 10101010
// --------
// 11111010
(defined at scala.Long)
abstract def |(x: Char): Long
Returns the bitwise OR of this value and x
.
Example:
(0xf0 | 0xaa) == 0xfa
// in binary: 11110000
// | 10101010
// --------
// 11111010
(defined at scala.Long)
abstract def |(x: Int): Long
Returns the bitwise OR of this value and x
.
Example:
(0xf0 | 0xaa) == 0xfa
// in binary: 11110000
// | 10101010
// --------
// 11111010
(defined at scala.Long)
abstract def |(x: Long): Long
Returns the bitwise OR of this value and x
.
Example:
(0xf0 | 0xaa) == 0xfa
// in binary: 11110000
// | 10101010
// --------
// 11111010
(defined at scala.Long)
abstract def |(x: Short): Long
Returns the bitwise OR of this value and x
.
Example:
(0xf0 | 0xaa) == 0xfa
// in binary: 11110000
// | 10101010
// --------
// 11111010
(defined at scala.Long)
Deprecated Value Members From scala.Long
abstract def toByte: Byte
(defined at scala.Long)
Concrete Value Members From Implicit scala.LowPriorityImplicits.longWrapper
def compare(y: Long): Int
Result of comparing this
with operand that
.
Implement this method to determine how instances of A will be sorted.
Returns x
where:
x < 0
whenthis < that
x == 0
whenthis == that
-
x > 0
whenthis > that
- Implicit information
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- OrderedProxy → Ordered
(added by implicit convertion: scala.LowPriorityImplicits.longWrapper)
def compareTo(that: Long): Int
Result of comparing this
with operand that
.
- Implicit information
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- Ordered → Comparable
(added by implicit convertion: scala.LowPriorityImplicits.longWrapper)
def max(that: Long): Long
Returns this
if this > that
or that
otherwise.
- Implicit information
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichLong → ScalaNumberProxy
(added by implicit convertion: scala.LowPriorityImplicits.longWrapper)
def min(that: Long): Long
Returns this
if this < that
or that
otherwise.
- Implicit information
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichLong → ScalaNumberProxy
(added by implicit convertion: scala.LowPriorityImplicits.longWrapper)
def to(end: Long): Inclusive[Long]
- Implicit information
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- IntegralProxy → RangedProxy
(added by implicit convertion: scala.LowPriorityImplicits.longWrapper)
def to(end: Long, step: Long): Inclusive[Long]
- Implicit information
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- IntegralProxy → RangedProxy
(added by implicit convertion: scala.LowPriorityImplicits.longWrapper)
def until(end: Long): Exclusive[Long]
- Implicit information
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- IntegralProxy → RangedProxy
(added by implicit convertion: scala.LowPriorityImplicits.longWrapper)
def until(end: Long, step: Long): Exclusive[Long]
- Implicit information
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- IntegralProxy → RangedProxy
(added by implicit convertion: scala.LowPriorityImplicits.longWrapper)
Concrete Value Members From Implicit scala.Predef.long2Long
def compareTo(arg0: java.lang.Long): Int
- Implicit information
- This member is added by an implicit conversion from Long to java.lang.Long performed by method long2Long in scala.Predef.
- Definition Classes
- Long → Comparable (added by implicit convertion: scala.Predef.long2Long)
Full Source:
/* __ *\
** ________ ___ / / ___ Scala API **
** / __/ __// _ | / / / _ | (c) 2002-2013, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
// DO NOT EDIT, CHANGES WILL BE LOST
// This auto-generated code can be modified in scala.tools.cmd.gen.
// Afterwards, running tools/codegen-anyvals regenerates this source file.
package scala
/** `Long`, a 64-bit signed integer (equivalent to Java's `long` primitive type) is a
* subtype of [[scala.AnyVal]]. Instances of `Long` are not
* represented by an object in the underlying runtime system.
*
* There is an implicit conversion from [[scala.Long]] => [[scala.runtime.RichLong]]
* which provides useful non-primitive operations.
*/
final abstract class Long private extends AnyVal {
def toByte: Byte
def toShort: Short
def toChar: Char
def toInt: Int
def toLong: Long
def toFloat: Float
def toDouble: Double
/**
* Returns the bitwise negation of this value.
* @example {{{
* ~5 == -6
* // in binary: ~00000101 ==
* // 11111010
* }}}
*/
def unary_~ : Long
/** Returns this value, unmodified. */
def unary_+ : Long
/** Returns the negation of this value. */
def unary_- : Long
def +(x: String): String
/**
* Returns this value bit-shifted left by the specified number of bits,
* filling in the new right bits with zeroes.
* @example {{{ 6 << 3 == 48 // in binary: 0110 << 3 == 0110000 }}}
*/
def <<(x: Int): Long
/**
* Returns this value bit-shifted left by the specified number of bits,
* filling in the new right bits with zeroes.
* @example {{{ 6 << 3 == 48 // in binary: 0110 << 3 == 0110000 }}}
*/
def <<(x: Long): Long
/**
* Returns this value bit-shifted right by the specified number of bits,
* filling the new left bits with zeroes.
* @example {{{ 21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010 }}}
* @example {{{
* -21 >>> 3 == 536870909
* // in binary: 11111111 11111111 11111111 11101011 >>> 3 ==
* // 00011111 11111111 11111111 11111101
* }}}
*/
def >>>(x: Int): Long
/**
* Returns this value bit-shifted right by the specified number of bits,
* filling the new left bits with zeroes.
* @example {{{ 21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010 }}}
* @example {{{
* -21 >>> 3 == 536870909
* // in binary: 11111111 11111111 11111111 11101011 >>> 3 ==
* // 00011111 11111111 11111111 11111101
* }}}
*/
def >>>(x: Long): Long
/**
* Returns this value bit-shifted right by the specified number of bits,
* filling in the left bits with the same value as the left-most bit of this.
* The effect of this is to retain the sign of the value.
* @example {{{
* -21 >> 3 == -3
* // in binary: 11111111 11111111 11111111 11101011 >> 3 ==
* // 11111111 11111111 11111111 11111101
* }}}
*/
def >>(x: Int): Long
/**
* Returns this value bit-shifted right by the specified number of bits,
* filling in the left bits with the same value as the left-most bit of this.
* The effect of this is to retain the sign of the value.
* @example {{{
* -21 >> 3 == -3
* // in binary: 11111111 11111111 11111111 11101011 >> 3 ==
* // 11111111 11111111 11111111 11111101
* }}}
*/
def >>(x: Long): Long
/** Returns `true` if this value is equal to x, `false` otherwise. */
def ==(x: Byte): Boolean
/** Returns `true` if this value is equal to x, `false` otherwise. */
def ==(x: Short): Boolean
/** Returns `true` if this value is equal to x, `false` otherwise. */
def ==(x: Char): Boolean
/** Returns `true` if this value is equal to x, `false` otherwise. */
def ==(x: Int): Boolean
/** Returns `true` if this value is equal to x, `false` otherwise. */
def ==(x: Long): Boolean
/** Returns `true` if this value is equal to x, `false` otherwise. */
def ==(x: Float): Boolean
/** Returns `true` if this value is equal to x, `false` otherwise. */
def ==(x: Double): Boolean
/** Returns `true` if this value is not equal to x, `false` otherwise. */
def !=(x: Byte): Boolean
/** Returns `true` if this value is not equal to x, `false` otherwise. */
def !=(x: Short): Boolean
/** Returns `true` if this value is not equal to x, `false` otherwise. */
def !=(x: Char): Boolean
/** Returns `true` if this value is not equal to x, `false` otherwise. */
def !=(x: Int): Boolean
/** Returns `true` if this value is not equal to x, `false` otherwise. */
def !=(x: Long): Boolean
/** Returns `true` if this value is not equal to x, `false` otherwise. */
def !=(x: Float): Boolean
/** Returns `true` if this value is not equal to x, `false` otherwise. */
def !=(x: Double): Boolean
/** Returns `true` if this value is less than x, `false` otherwise. */
def <(x: Byte): Boolean
/** Returns `true` if this value is less than x, `false` otherwise. */
def <(x: Short): Boolean
/** Returns `true` if this value is less than x, `false` otherwise. */
def <(x: Char): Boolean
/** Returns `true` if this value is less than x, `false` otherwise. */
def <(x: Int): Boolean
/** Returns `true` if this value is less than x, `false` otherwise. */
def <(x: Long): Boolean
/** Returns `true` if this value is less than x, `false` otherwise. */
def <(x: Float): Boolean
/** Returns `true` if this value is less than x, `false` otherwise. */
def <(x: Double): Boolean
/** Returns `true` if this value is less than or equal to x, `false` otherwise. */
def <=(x: Byte): Boolean
/** Returns `true` if this value is less than or equal to x, `false` otherwise. */
def <=(x: Short): Boolean
/** Returns `true` if this value is less than or equal to x, `false` otherwise. */
def <=(x: Char): Boolean
/** Returns `true` if this value is less than or equal to x, `false` otherwise. */
def <=(x: Int): Boolean
/** Returns `true` if this value is less than or equal to x, `false` otherwise. */
def <=(x: Long): Boolean
/** Returns `true` if this value is less than or equal to x, `false` otherwise. */
def <=(x: Float): Boolean
/** Returns `true` if this value is less than or equal to x, `false` otherwise. */
def <=(x: Double): Boolean
/** Returns `true` if this value is greater than x, `false` otherwise. */
def >(x: Byte): Boolean
/** Returns `true` if this value is greater than x, `false` otherwise. */
def >(x: Short): Boolean
/** Returns `true` if this value is greater than x, `false` otherwise. */
def >(x: Char): Boolean
/** Returns `true` if this value is greater than x, `false` otherwise. */
def >(x: Int): Boolean
/** Returns `true` if this value is greater than x, `false` otherwise. */
def >(x: Long): Boolean
/** Returns `true` if this value is greater than x, `false` otherwise. */
def >(x: Float): Boolean
/** Returns `true` if this value is greater than x, `false` otherwise. */
def >(x: Double): Boolean
/** Returns `true` if this value is greater than or equal to x, `false` otherwise. */
def >=(x: Byte): Boolean
/** Returns `true` if this value is greater than or equal to x, `false` otherwise. */
def >=(x: Short): Boolean
/** Returns `true` if this value is greater than or equal to x, `false` otherwise. */
def >=(x: Char): Boolean
/** Returns `true` if this value is greater than or equal to x, `false` otherwise. */
def >=(x: Int): Boolean
/** Returns `true` if this value is greater than or equal to x, `false` otherwise. */
def >=(x: Long): Boolean
/** Returns `true` if this value is greater than or equal to x, `false` otherwise. */
def >=(x: Float): Boolean
/** Returns `true` if this value is greater than or equal to x, `false` otherwise. */
def >=(x: Double): Boolean
/**
* Returns the bitwise OR of this value and `x`.
* @example {{{
* (0xf0 | 0xaa) == 0xfa
* // in binary: 11110000
* // | 10101010
* // --------
* // 11111010
* }}}
*/
def |(x: Byte): Long
/**
* Returns the bitwise OR of this value and `x`.
* @example {{{
* (0xf0 | 0xaa) == 0xfa
* // in binary: 11110000
* // | 10101010
* // --------
* // 11111010
* }}}
*/
def |(x: Short): Long
/**
* Returns the bitwise OR of this value and `x`.
* @example {{{
* (0xf0 | 0xaa) == 0xfa
* // in binary: 11110000
* // | 10101010
* // --------
* // 11111010
* }}}
*/
def |(x: Char): Long
/**
* Returns the bitwise OR of this value and `x`.
* @example {{{
* (0xf0 | 0xaa) == 0xfa
* // in binary: 11110000
* // | 10101010
* // --------
* // 11111010
* }}}
*/
def |(x: Int): Long
/**
* Returns the bitwise OR of this value and `x`.
* @example {{{
* (0xf0 | 0xaa) == 0xfa
* // in binary: 11110000
* // | 10101010
* // --------
* // 11111010
* }}}
*/
def |(x: Long): Long
/**
* Returns the bitwise AND of this value and `x`.
* @example {{{
* (0xf0 & 0xaa) == 0xa0
* // in binary: 11110000
* // & 10101010
* // --------
* // 10100000
* }}}
*/
def &(x: Byte): Long
/**
* Returns the bitwise AND of this value and `x`.
* @example {{{
* (0xf0 & 0xaa) == 0xa0
* // in binary: 11110000
* // & 10101010
* // --------
* // 10100000
* }}}
*/
def &(x: Short): Long
/**
* Returns the bitwise AND of this value and `x`.
* @example {{{
* (0xf0 & 0xaa) == 0xa0
* // in binary: 11110000
* // & 10101010
* // --------
* // 10100000
* }}}
*/
def &(x: Char): Long
/**
* Returns the bitwise AND of this value and `x`.
* @example {{{
* (0xf0 & 0xaa) == 0xa0
* // in binary: 11110000
* // & 10101010
* // --------
* // 10100000
* }}}
*/
def &(x: Int): Long
/**
* Returns the bitwise AND of this value and `x`.
* @example {{{
* (0xf0 & 0xaa) == 0xa0
* // in binary: 11110000
* // & 10101010
* // --------
* // 10100000
* }}}
*/
def &(x: Long): Long
/**
* Returns the bitwise XOR of this value and `x`.
* @example {{{
* (0xf0 ^ 0xaa) == 0x5a
* // in binary: 11110000
* // ^ 10101010
* // --------
* // 01011010
* }}}
*/
def ^(x: Byte): Long
/**
* Returns the bitwise XOR of this value and `x`.
* @example {{{
* (0xf0 ^ 0xaa) == 0x5a
* // in binary: 11110000
* // ^ 10101010
* // --------
* // 01011010
* }}}
*/
def ^(x: Short): Long
/**
* Returns the bitwise XOR of this value and `x`.
* @example {{{
* (0xf0 ^ 0xaa) == 0x5a
* // in binary: 11110000
* // ^ 10101010
* // --------
* // 01011010
* }}}
*/
def ^(x: Char): Long
/**
* Returns the bitwise XOR of this value and `x`.
* @example {{{
* (0xf0 ^ 0xaa) == 0x5a
* // in binary: 11110000
* // ^ 10101010
* // --------
* // 01011010
* }}}
*/
def ^(x: Int): Long
/**
* Returns the bitwise XOR of this value and `x`.
* @example {{{
* (0xf0 ^ 0xaa) == 0x5a
* // in binary: 11110000
* // ^ 10101010
* // --------
* // 01011010
* }}}
*/
def ^(x: Long): Long
/** Returns the sum of this value and `x`. */
def +(x: Byte): Long
/** Returns the sum of this value and `x`. */
def +(x: Short): Long
/** Returns the sum of this value and `x`. */
def +(x: Char): Long
/** Returns the sum of this value and `x`. */
def +(x: Int): Long
/** Returns the sum of this value and `x`. */
def +(x: Long): Long
/** Returns the sum of this value and `x`. */
def +(x: Float): Float
/** Returns the sum of this value and `x`. */
def +(x: Double): Double
/** Returns the difference of this value and `x`. */
def -(x: Byte): Long
/** Returns the difference of this value and `x`. */
def -(x: Short): Long
/** Returns the difference of this value and `x`. */
def -(x: Char): Long
/** Returns the difference of this value and `x`. */
def -(x: Int): Long
/** Returns the difference of this value and `x`. */
def -(x: Long): Long
/** Returns the difference of this value and `x`. */
def -(x: Float): Float
/** Returns the difference of this value and `x`. */
def -(x: Double): Double
/** Returns the product of this value and `x`. */
def *(x: Byte): Long
/** Returns the product of this value and `x`. */
def *(x: Short): Long
/** Returns the product of this value and `x`. */
def *(x: Char): Long
/** Returns the product of this value and `x`. */
def *(x: Int): Long
/** Returns the product of this value and `x`. */
def *(x: Long): Long
/** Returns the product of this value and `x`. */
def *(x: Float): Float
/** Returns the product of this value and `x`. */
def *(x: Double): Double
/** Returns the quotient of this value and `x`. */
def /(x: Byte): Long
/** Returns the quotient of this value and `x`. */
def /(x: Short): Long
/** Returns the quotient of this value and `x`. */
def /(x: Char): Long
/** Returns the quotient of this value and `x`. */
def /(x: Int): Long
/** Returns the quotient of this value and `x`. */
def /(x: Long): Long
/** Returns the quotient of this value and `x`. */
def /(x: Float): Float
/** Returns the quotient of this value and `x`. */
def /(x: Double): Double
/** Returns the remainder of the division of this value by `x`. */
def %(x: Byte): Long
/** Returns the remainder of the division of this value by `x`. */
def %(x: Short): Long
/** Returns the remainder of the division of this value by `x`. */
def %(x: Char): Long
/** Returns the remainder of the division of this value by `x`. */
def %(x: Int): Long
/** Returns the remainder of the division of this value by `x`. */
def %(x: Long): Long
/** Returns the remainder of the division of this value by `x`. */
def %(x: Float): Float
/** Returns the remainder of the division of this value by `x`. */
def %(x: Double): Double
override def getClass(): Class[Long] = null
}
object Long extends AnyValCompanion {
/** The smallest value representable as a Long. */
final val MinValue = java.lang.Long.MIN_VALUE
/** The largest value representable as a Long. */
final val MaxValue = java.lang.Long.MAX_VALUE
/** Transform a value type into a boxed reference type.
*
* Runtime implementation determined by `scala.runtime.BoxesRunTime.boxToLong`. See [[https://github.com/scala/scala src/library/scala/runtime/BoxesRunTime.java]].
*
* @param x the Long to be boxed
* @return a java.lang.Long offering `x` as its underlying value.
*/
def box(x: Long): java.lang.Long = java.lang.Long.valueOf(x)
/** Transform a boxed type into a value type. Note that this
* method is not typesafe: it accepts any Object, but will throw
* an exception if the argument is not a java.lang.Long.
*
* Runtime implementation determined by `scala.runtime.BoxesRunTime.unboxToLong`. See [[https://github.com/scala/scala src/library/scala/runtime/BoxesRunTime.java]].
*
* @param x the java.lang.Long to be unboxed.
* @throws ClassCastException if the argument is not a java.lang.Long
* @return the Long resulting from calling longValue() on `x`
*/
def unbox(x: java.lang.Object): Long = x.asInstanceOf[java.lang.Long].longValue()
/** The String representation of the scala.Long companion object. */
override def toString = "object scala.Long"
/** Language mandated coercions from Long to "wider" types. */
import scala.language.implicitConversions
implicit def long2float(x: Long): Float = x.toFloat
implicit def long2double(x: Long): Double = x.toDouble
}
Interested in Scala?
I send out weekly, personalized emails with articles and conference talks.
Subscribe now.