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.
- Source
- Long.scala
- Alphabetic
- By Inheritance
- Long
- AnyVal
- Any
- by long2Long
- by longWrapper
- by long2double
- by long2float
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
!=(x: Double): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Float): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Long): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Int): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Char): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Short): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Byte): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
%(x: Double): Double
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Float): Float
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Long): Long
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Int): Long
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Char): Long
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Short): Long
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Byte): Long
Returns the remainder of the division of this value by
x
. -
abstract
def
&(x: Long): Long
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: -
abstract
def
&(x: Int): Long
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: -
abstract
def
&(x: Char): Long
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: -
abstract
def
&(x: Short): Long
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: -
abstract
def
&(x: Byte): Long
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: -
abstract
def
*(x: Double): Double
Returns the product of this value and
x
. -
abstract
def
*(x: Float): Float
Returns the product of this value and
x
. -
abstract
def
*(x: Long): Long
Returns the product of this value and
x
. -
abstract
def
*(x: Int): Long
Returns the product of this value and
x
. -
abstract
def
*(x: Char): Long
Returns the product of this value and
x
. -
abstract
def
*(x: Short): Long
Returns the product of this value and
x
. -
abstract
def
*(x: Byte): Long
Returns the product of this value and
x
. -
abstract
def
+(x: Double): Double
Returns the sum of this value and
x
. -
abstract
def
+(x: Float): Float
Returns the sum of this value and
x
. -
abstract
def
+(x: Long): Long
Returns the sum of this value and
x
. -
abstract
def
+(x: Int): Long
Returns the sum of this value and
x
. -
abstract
def
+(x: Char): Long
Returns the sum of this value and
x
. -
abstract
def
+(x: Short): Long
Returns the sum of this value and
x
. -
abstract
def
+(x: Byte): Long
Returns the sum of this value and
x
. - abstract def +(x: String): String
-
abstract
def
-(x: Double): Double
Returns the difference of this value and
x
. -
abstract
def
-(x: Float): Float
Returns the difference of this value and
x
. -
abstract
def
-(x: Long): Long
Returns the difference of this value and
x
. -
abstract
def
-(x: Int): Long
Returns the difference of this value and
x
. -
abstract
def
-(x: Char): Long
Returns the difference of this value and
x
. -
abstract
def
-(x: Short): Long
Returns the difference of this value and
x
. -
abstract
def
-(x: Byte): Long
Returns the difference of this value and
x
. -
abstract
def
/(x: Double): Double
Returns the quotient of this value and
x
. -
abstract
def
/(x: Float): Float
Returns the quotient of this value and
x
. -
abstract
def
/(x: Long): Long
Returns the quotient of this value and
x
. -
abstract
def
/(x: Int): Long
Returns the quotient of this value and
x
. -
abstract
def
/(x: Char): Long
Returns the quotient of this value and
x
. -
abstract
def
/(x: Short): Long
Returns the quotient of this value and
x
. -
abstract
def
/(x: Byte): Long
Returns the quotient of this value and
x
. -
abstract
def
<(x: Double): Boolean
Returns
true
if this value is less than x,false
otherwise. -
abstract
def
<(x: Float): Boolean
Returns
true
if this value is less than x,false
otherwise. -
abstract
def
<(x: Long): Boolean
Returns
true
if this value is less than x,false
otherwise. -
abstract
def
<(x: Int): Boolean
Returns
true
if this value is less than x,false
otherwise. -
abstract
def
<(x: Char): Boolean
Returns
true
if this value is less than x,false
otherwise. -
abstract
def
<(x: Short): Boolean
Returns
true
if this value is less than x,false
otherwise. -
abstract
def
<(x: Byte): Boolean
Returns
true
if this value is less than x,false
otherwise. -
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.
Returns this value bit-shifted left by the specified number of bits, filling in the new right bits with zeroes.
6 << 3 == 48 // in binary: 0110 << 3 == 0110000
Example: -
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.
Returns this value bit-shifted left by the specified number of bits, filling in the new right bits with zeroes.
6 << 3 == 48 // in binary: 0110 << 3 == 0110000
Example: -
abstract
def
<=(x: Double): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
<=(x: Float): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
<=(x: Long): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
<=(x: Int): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
<=(x: Char): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
<=(x: Short): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
<=(x: Byte): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise. -
abstract
def
==(x: Double): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
==(x: Float): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
==(x: Long): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
==(x: Int): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
==(x: Char): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
==(x: Short): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
==(x: Byte): Boolean
Returns
true
if this value is equal to x,false
otherwise. -
abstract
def
>(x: Double): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>(x: Float): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>(x: Long): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>(x: Int): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>(x: Char): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>(x: Short): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>(x: Byte): Boolean
Returns
true
if this value is greater than x,false
otherwise. -
abstract
def
>=(x: Double): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. -
abstract
def
>=(x: Float): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. -
abstract
def
>=(x: Long): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. -
abstract
def
>=(x: Int): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. -
abstract
def
>=(x: Char): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. -
abstract
def
>=(x: Short): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. -
abstract
def
>=(x: Byte): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise. -
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.
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.
-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
Example: -
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.
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.
-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
Example: -
abstract
def
>>>(x: Long): Long
Returns this value bit-shifted right by the specified number of bits, filling the new left bits with zeroes.
Returns this value bit-shifted right by the specified number of bits, filling the new left bits with zeroes.
21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
, -21 >>> 3 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
Examples: -
abstract
def
>>>(x: Int): Long
Returns this value bit-shifted right by the specified number of bits, filling the new left bits with zeroes.
Returns this value bit-shifted right by the specified number of bits, filling the new left bits with zeroes.
21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
, -21 >>> 3 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
Examples: -
abstract
def
^(x: Long): Long
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: -
abstract
def
^(x: Int): Long
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: -
abstract
def
^(x: Char): Long
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: -
abstract
def
^(x: Short): Long
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: -
abstract
def
^(x: Byte): Long
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - abstract def toByte: Byte
- abstract def toChar: Char
- abstract def toDouble: Double
- abstract def toFloat: Float
- abstract def toInt: Int
- abstract def toLong: Long
- abstract def toShort: Short
-
abstract
def
unary_+: Long
Returns this value, unmodified.
-
abstract
def
unary_-: Long
Returns the negation of this value.
-
abstract
def
unary_~: Long
Returns the bitwise negation of this value.
Returns the bitwise negation of this value.
~5 == -6 // in binary: ~00000101 == // 11111010
Example: -
abstract
def
|(x: Long): Long
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: -
abstract
def
|(x: Int): Long
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: -
abstract
def
|(x: Char): Long
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: -
abstract
def
|(x: Short): Long
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: -
abstract
def
|(x: Byte): Long
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example:
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
Test two objects for inequality.
Test two objects for inequality.
- returns
true
if !(this == that), false otherwise.
- Definition Classes
- Any
-
final
def
##(): Int
Equivalent to
x.hashCode
except for boxed numeric types andnull
.Equivalent to
x.hashCode
except for boxed numeric types andnull
. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. Fornull
returns a hashcode wherenull.hashCode
throws aNullPointerException
.- returns
a hash value consistent with ==
- Definition Classes
- Any
-
def
->[B](y: B): (Long, B)
- Implicit
- This member is added by an implicit conversion from Long to ArrowAssoc[Long] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
final
def
==(arg0: Any): Boolean
Test two objects for equality.
Test two objects for equality. The expression
x == that
is equivalent toif (x eq null) that eq null else x.equals(that)
.- returns
true
if the receiver object is equivalent to the argument;false
otherwise.
- Definition Classes
- Any
-
def
abs: Long
Returns the absolute value of
this
.Returns the absolute value of
this
.- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichLong → ScalaNumberProxy
-
final
def
asInstanceOf[T0]: T0
Cast the receiver object to be of type
T0
.Cast the receiver object to be of type
T0
.Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression
1.asInstanceOf[String]
will throw aClassCastException
at runtime, while the expressionList(1).asInstanceOf[List[String]]
will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.- returns
the receiver object.
- Definition Classes
- Any
- Exceptions thrown
ClassCastException
if the receiver object is not an instance of the erasure of typeT0
.
-
def
compare(y: Long): Int
Result of comparing
this
with operandthat
.Result of comparing
this
with operandthat
.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
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- OrderedProxy → Ordered
-
def
compareTo(arg0: java.lang.Long): Int
- Implicit
- 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
-
def
compareTo(that: Long): Int
Result of comparing
this
with operandthat
. -
def
ensuring(cond: (Long) ⇒ Boolean, msg: ⇒ Any): Long
- Implicit
- This member is added by an implicit conversion from Long to Ensuring[Long] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (Long) ⇒ Boolean): Long
- Implicit
- This member is added by an implicit conversion from Long to Ensuring[Long] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): Long
- Implicit
- This member is added by an implicit conversion from Long to Ensuring[Long] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): Long
- Implicit
- This member is added by an implicit conversion from Long to Ensuring[Long] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
equals(arg0: Any): Boolean
Compares the receiver object (
this
) with the argument object (that
) for equivalence.Compares the receiver object (
this
) with the argument object (that
) for equivalence.Any implementation of this method should be an equivalence relation:
- It is reflexive: for any instance
x
of typeAny
,x.equals(x)
should returntrue
. - It is symmetric: for any instances
x
andy
of typeAny
,x.equals(y)
should returntrue
if and only ify.equals(x)
returnstrue
. - It is transitive: for any instances
x
,y
, andz
of typeAny
ifx.equals(y)
returnstrue
andy.equals(z)
returnstrue
, thenx.equals(z)
should returntrue
.
If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is usually necessary to override
hashCode
to ensure that objects which are "equal" (o1.equals(o2)
returnstrue
) hash to the same scala.Int. (o1.hashCode.equals(o2.hashCode)
).- returns
true
if the receiver object is equivalent to the argument;false
otherwise.
- Definition Classes
- Any
- It is reflexive: for any instance
-
def
formatted(fmtstr: String): String
Returns string formatted according to given
format
string.Returns string formatted according to given
format
string. Format strings are as forString.format
(@see java.lang.String.format).- Implicit
- This member is added by an implicit conversion from Long to StringFormat[Long] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
-
def
getClass(): Class[Long]
Returns the runtime class representation of the object.
-
def
hashCode(): Int
Calculate a hash code value for the object.
Calculate a hash code value for the object.
The default hashing algorithm is platform dependent.
Note that it is allowed for two objects to have identical hash codes (
o1.hashCode.equals(o2.hashCode)
) yet not be equal (o1.equals(o2)
returnsfalse
). A degenerate implementation could always return0
. However, it is required that if two objects are equal (o1.equals(o2)
returnstrue
) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)
). Therefore, when overriding this method, be sure to verify that the behavior is consistent with theequals
method.- returns
the hash code value for this object.
- Definition Classes
- Any
-
final
def
isInstanceOf[T0]: Boolean
Test whether the dynamic type of the receiver object is
T0
.Test whether the dynamic type of the receiver object is
T0
.Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression
1.isInstanceOf[String]
will returnfalse
, while the expressionList(1).isInstanceOf[List[String]]
will returntrue
. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.- returns
true
if the receiver object is an instance of erasure of typeT0
;false
otherwise.
- Definition Classes
- Any
-
def
isValidByte: Boolean
Returns
true
iff this has a zero fractional part, and is within the range of scala.Byte MinValue and MaxValue; otherwise returnsfalse
.Returns
true
iff this has a zero fractional part, and is within the range of scala.Byte MinValue and MaxValue; otherwise returnsfalse
.- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichLong → ScalaNumericAnyConversions
-
def
isValidChar: Boolean
Returns
true
iff this has a zero fractional part, and is within the range of scala.Char MinValue and MaxValue; otherwise returnsfalse
.Returns
true
iff this has a zero fractional part, and is within the range of scala.Char MinValue and MaxValue; otherwise returnsfalse
.- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichLong → ScalaNumericAnyConversions
-
def
isValidInt: Boolean
Returns
true
iff this has a zero fractional part, and is within the range of scala.Int MinValue and MaxValue; otherwise returnsfalse
.Returns
true
iff this has a zero fractional part, and is within the range of scala.Int MinValue and MaxValue; otherwise returnsfalse
.- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichLong → ScalaNumericAnyConversions
- def isValidLong: Boolean
-
def
isValidShort: Boolean
Returns
true
iff this has a zero fractional part, and is within the range of scala.Short MinValue and MaxValue; otherwise returnsfalse
.Returns
true
iff this has a zero fractional part, and is within the range of scala.Short MinValue and MaxValue; otherwise returnsfalse
.- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichLong → ScalaNumericAnyConversions
-
def
isWhole(): Boolean
- returns
true
if this number has no decimal component,false
otherwise.
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- ScalaWholeNumberProxy → ScalaNumericAnyConversions
-
def
max(that: Long): Long
Returns
this
ifthis > that
orthat
otherwise.Returns
this
ifthis > that
orthat
otherwise.- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichLong → ScalaNumberProxy
-
def
min(that: Long): Long
Returns
this
ifthis < that
orthat
otherwise.Returns
this
ifthis < that
orthat
otherwise.- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichLong → ScalaNumberProxy
- val self: Long
-
def
signum: Int
Returns the signum of
this
.Returns the signum of
this
.- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichLong → ScalaNumberProxy
-
def
to(end: Long, step: Long): Inclusive[Long]
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- IntegralProxy → RangedProxy
-
def
to(end: Long): Inclusive[Long]
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- IntegralProxy → RangedProxy
- def toBinaryString: String
- def toHexString: String
- def toOctalString: String
-
def
toString(): String
Returns a string representation of the object.
Returns a string representation of the object.
The default representation is platform dependent.
- returns
a string representation of the object.
- Definition Classes
- Any
-
def
underlying(): AnyRef
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- ScalaNumberProxy → ScalaNumericAnyConversions
-
def
until(end: Long, step: Long): Exclusive[Long]
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- IntegralProxy → RangedProxy
-
def
until(end: Long): Exclusive[Long]
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- IntegralProxy → RangedProxy
-
def
→[B](y: B): (Long, B)
- Implicit
- This member is added by an implicit conversion from Long to ArrowAssoc[Long] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
Shadowed Implicit Value Members
-
def
!=(x: Double): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).!=(x)
- Definition Classes
- Double
-
def
!=(x: Float): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).!=(x)
- Definition Classes
- Double
-
def
!=(x: Long): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).!=(x)
- Definition Classes
- Double
-
def
!=(x: Int): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).!=(x)
- Definition Classes
- Double
-
def
!=(x: Char): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).!=(x)
- Definition Classes
- Double
-
def
!=(x: Short): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).!=(x)
- Definition Classes
- Double
-
def
!=(x: Byte): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).!=(x)
- Definition Classes
- Double
-
def
!=(x: Double): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).!=(x)
- Definition Classes
- Float
-
def
!=(x: Float): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).!=(x)
- Definition Classes
- Float
-
def
!=(x: Long): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).!=(x)
- Definition Classes
- Float
-
def
!=(x: Int): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).!=(x)
- Definition Classes
- Float
-
def
!=(x: Char): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).!=(x)
- Definition Classes
- Float
-
def
!=(x: Short): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).!=(x)
- Definition Classes
- Float
-
def
!=(x: Byte): Boolean
Returns
true
if this value is not equal to x,false
otherwise.Returns
true
if this value is not equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).!=(x)
- Definition Classes
- Float
-
def
%(x: Double): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).%(x)
- Definition Classes
- Double
-
def
%(x: Float): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).%(x)
- Definition Classes
- Double
-
def
%(x: Long): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).%(x)
- Definition Classes
- Double
-
def
%(x: Int): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).%(x)
- Definition Classes
- Double
-
def
%(x: Char): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).%(x)
- Definition Classes
- Double
-
def
%(x: Short): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).%(x)
- Definition Classes
- Double
-
def
%(x: Byte): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).%(x)
- Definition Classes
- Double
-
def
%(x: Double): Double
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).%(x)
- Definition Classes
- Float
-
def
%(x: Float): Float
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).%(x)
- Definition Classes
- Float
-
def
%(x: Long): Float
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).%(x)
- Definition Classes
- Float
-
def
%(x: Int): Float
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).%(x)
- Definition Classes
- Float
-
def
%(x: Char): Float
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).%(x)
- Definition Classes
- Float
-
def
%(x: Short): Float
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).%(x)
- Definition Classes
- Float
-
def
%(x: Byte): Float
Returns the remainder of the division of this value by
x
.Returns the remainder of the division of this value by
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).%(x)
- Definition Classes
- Float
-
def
*(x: Double): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).*(x)
- Definition Classes
- Double
-
def
*(x: Float): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).*(x)
- Definition Classes
- Double
-
def
*(x: Long): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).*(x)
- Definition Classes
- Double
-
def
*(x: Int): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).*(x)
- Definition Classes
- Double
-
def
*(x: Char): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).*(x)
- Definition Classes
- Double
-
def
*(x: Short): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).*(x)
- Definition Classes
- Double
-
def
*(x: Byte): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).*(x)
- Definition Classes
- Double
-
def
*(x: Double): Double
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).*(x)
- Definition Classes
- Float
-
def
*(x: Float): Float
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).*(x)
- Definition Classes
- Float
-
def
*(x: Long): Float
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).*(x)
- Definition Classes
- Float
-
def
*(x: Int): Float
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).*(x)
- Definition Classes
- Float
-
def
*(x: Char): Float
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).*(x)
- Definition Classes
- Float
-
def
*(x: Short): Float
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).*(x)
- Definition Classes
- Float
-
def
*(x: Byte): Float
Returns the product of this value and
x
.Returns the product of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).*(x)
- Definition Classes
- Float
-
def
+(x: Double): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).+(x)
- Definition Classes
- Double
-
def
+(x: Float): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).+(x)
- Definition Classes
- Double
-
def
+(x: Long): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).+(x)
- Definition Classes
- Double
-
def
+(x: Int): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).+(x)
- Definition Classes
- Double
-
def
+(x: Char): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).+(x)
- Definition Classes
- Double
-
def
+(x: Short): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).+(x)
- Definition Classes
- Double
-
def
+(x: Byte): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).+(x)
- Definition Classes
- Double
-
def
+(x: String): String
- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).+(x)
- Definition Classes
- Double
-
def
+(x: Double): Double
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).+(x)
- Definition Classes
- Float
-
def
+(x: Float): Float
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).+(x)
- Definition Classes
- Float
-
def
+(x: Long): Float
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).+(x)
- Definition Classes
- Float
-
def
+(x: Int): Float
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).+(x)
- Definition Classes
- Float
-
def
+(x: Char): Float
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).+(x)
- Definition Classes
- Float
-
def
+(x: Short): Float
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).+(x)
- Definition Classes
- Float
-
def
+(x: Byte): Float
Returns the sum of this value and
x
.Returns the sum of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).+(x)
- Definition Classes
- Float
-
def
+(x: String): String
- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).+(x)
- Definition Classes
- Float
-
def
+(other: String): String
- Implicit
- This member is added by an implicit conversion from Long to any2stringadd[Long] performed by method any2stringadd in scala.Predef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: any2stringadd[Long]).+(other)
- Definition Classes
- any2stringadd
-
def
-(x: Double): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).-(x)
- Definition Classes
- Double
-
def
-(x: Float): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).-(x)
- Definition Classes
- Double
-
def
-(x: Long): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).-(x)
- Definition Classes
- Double
-
def
-(x: Int): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).-(x)
- Definition Classes
- Double
-
def
-(x: Char): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).-(x)
- Definition Classes
- Double
-
def
-(x: Short): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).-(x)
- Definition Classes
- Double
-
def
-(x: Byte): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).-(x)
- Definition Classes
- Double
-
def
-(x: Double): Double
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).-(x)
- Definition Classes
- Float
-
def
-(x: Float): Float
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).-(x)
- Definition Classes
- Float
-
def
-(x: Long): Float
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).-(x)
- Definition Classes
- Float
-
def
-(x: Int): Float
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).-(x)
- Definition Classes
- Float
-
def
-(x: Char): Float
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).-(x)
- Definition Classes
- Float
-
def
-(x: Short): Float
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).-(x)
- Definition Classes
- Float
-
def
-(x: Byte): Float
Returns the difference of this value and
x
.Returns the difference of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).-(x)
- Definition Classes
- Float
-
def
/(x: Double): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double)./(x)
- Definition Classes
- Double
-
def
/(x: Float): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double)./(x)
- Definition Classes
- Double
-
def
/(x: Long): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double)./(x)
- Definition Classes
- Double
-
def
/(x: Int): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double)./(x)
- Definition Classes
- Double
-
def
/(x: Char): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double)./(x)
- Definition Classes
- Double
-
def
/(x: Short): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double)./(x)
- Definition Classes
- Double
-
def
/(x: Byte): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double)./(x)
- Definition Classes
- Double
-
def
/(x: Double): Double
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float)./(x)
- Definition Classes
- Float
-
def
/(x: Float): Float
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float)./(x)
- Definition Classes
- Float
-
def
/(x: Long): Float
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float)./(x)
- Definition Classes
- Float
-
def
/(x: Int): Float
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float)./(x)
- Definition Classes
- Float
-
def
/(x: Char): Float
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float)./(x)
- Definition Classes
- Float
-
def
/(x: Short): Float
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float)./(x)
- Definition Classes
- Float
-
def
/(x: Byte): Float
Returns the quotient of this value and
x
.Returns the quotient of this value and
x
.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float)./(x)
- Definition Classes
- Float
-
def
<(that: Long): Boolean
Returns true if
this
is less thanthat
Returns true if
this
is less thanthat
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: RichLong).<(that)
- Definition Classes
- Ordered
-
def
<(x: Double): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<(x)
- Definition Classes
- Double
-
def
<(x: Float): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<(x)
- Definition Classes
- Double
-
def
<(x: Long): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<(x)
- Definition Classes
- Double
-
def
<(x: Int): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<(x)
- Definition Classes
- Double
-
def
<(x: Char): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<(x)
- Definition Classes
- Double
-
def
<(x: Short): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<(x)
- Definition Classes
- Double
-
def
<(x: Byte): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<(x)
- Definition Classes
- Double
-
def
<(x: Double): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<(x)
- Definition Classes
- Float
-
def
<(x: Float): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<(x)
- Definition Classes
- Float
-
def
<(x: Long): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<(x)
- Definition Classes
- Float
-
def
<(x: Int): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<(x)
- Definition Classes
- Float
-
def
<(x: Char): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<(x)
- Definition Classes
- Float
-
def
<(x: Short): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<(x)
- Definition Classes
- Float
-
def
<(x: Byte): Boolean
Returns
true
if this value is less than x,false
otherwise.Returns
true
if this value is less than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<(x)
- Definition Classes
- Float
-
def
<=(that: Long): Boolean
Returns true if
this
is less than or equal tothat
.Returns true if
this
is less than or equal tothat
.- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: RichLong).<=(that)
- Definition Classes
- Ordered
-
def
<=(x: Double): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<=(x)
- Definition Classes
- Double
-
def
<=(x: Float): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<=(x)
- Definition Classes
- Double
-
def
<=(x: Long): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<=(x)
- Definition Classes
- Double
-
def
<=(x: Int): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<=(x)
- Definition Classes
- Double
-
def
<=(x: Char): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<=(x)
- Definition Classes
- Double
-
def
<=(x: Short): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<=(x)
- Definition Classes
- Double
-
def
<=(x: Byte): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).<=(x)
- Definition Classes
- Double
-
def
<=(x: Double): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<=(x)
- Definition Classes
- Float
-
def
<=(x: Float): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<=(x)
- Definition Classes
- Float
-
def
<=(x: Long): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<=(x)
- Definition Classes
- Float
-
def
<=(x: Int): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<=(x)
- Definition Classes
- Float
-
def
<=(x: Char): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<=(x)
- Definition Classes
- Float
-
def
<=(x: Short): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<=(x)
- Definition Classes
- Float
-
def
<=(x: Byte): Boolean
Returns
true
if this value is less than or equal to x,false
otherwise.Returns
true
if this value is less than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).<=(x)
- Definition Classes
- Float
-
def
==(x: Double): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).==(x)
- Definition Classes
- Double
-
def
==(x: Float): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).==(x)
- Definition Classes
- Double
-
def
==(x: Long): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).==(x)
- Definition Classes
- Double
-
def
==(x: Int): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).==(x)
- Definition Classes
- Double
-
def
==(x: Char): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).==(x)
- Definition Classes
- Double
-
def
==(x: Short): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).==(x)
- Definition Classes
- Double
-
def
==(x: Byte): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).==(x)
- Definition Classes
- Double
-
def
==(x: Double): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).==(x)
- Definition Classes
- Float
-
def
==(x: Float): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).==(x)
- Definition Classes
- Float
-
def
==(x: Long): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).==(x)
- Definition Classes
- Float
-
def
==(x: Int): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).==(x)
- Definition Classes
- Float
-
def
==(x: Char): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).==(x)
- Definition Classes
- Float
-
def
==(x: Short): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).==(x)
- Definition Classes
- Float
-
def
==(x: Byte): Boolean
Returns
true
if this value is equal to x,false
otherwise.Returns
true
if this value is equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).==(x)
- Definition Classes
- Float
-
def
>(that: Long): Boolean
Returns true if
this
is greater thanthat
.Returns true if
this
is greater thanthat
.- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: RichLong).>(that)
- Definition Classes
- Ordered
-
def
>(x: Double): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>(x)
- Definition Classes
- Double
-
def
>(x: Float): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>(x)
- Definition Classes
- Double
-
def
>(x: Long): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>(x)
- Definition Classes
- Double
-
def
>(x: Int): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>(x)
- Definition Classes
- Double
-
def
>(x: Char): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>(x)
- Definition Classes
- Double
-
def
>(x: Short): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>(x)
- Definition Classes
- Double
-
def
>(x: Byte): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>(x)
- Definition Classes
- Double
-
def
>(x: Double): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>(x)
- Definition Classes
- Float
-
def
>(x: Float): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>(x)
- Definition Classes
- Float
-
def
>(x: Long): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>(x)
- Definition Classes
- Float
-
def
>(x: Int): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>(x)
- Definition Classes
- Float
-
def
>(x: Char): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>(x)
- Definition Classes
- Float
-
def
>(x: Short): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>(x)
- Definition Classes
- Float
-
def
>(x: Byte): Boolean
Returns
true
if this value is greater than x,false
otherwise.Returns
true
if this value is greater than x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>(x)
- Definition Classes
- Float
-
def
>=(that: Long): Boolean
Returns true if
this
is greater than or equal tothat
.Returns true if
this
is greater than or equal tothat
.- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: RichLong).>=(that)
- Definition Classes
- Ordered
-
def
>=(x: Double): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>=(x)
- Definition Classes
- Double
-
def
>=(x: Float): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>=(x)
- Definition Classes
- Double
-
def
>=(x: Long): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>=(x)
- Definition Classes
- Double
-
def
>=(x: Int): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>=(x)
- Definition Classes
- Double
-
def
>=(x: Char): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>=(x)
- Definition Classes
- Double
-
def
>=(x: Short): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>=(x)
- Definition Classes
- Double
-
def
>=(x: Byte): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).>=(x)
- Definition Classes
- Double
-
def
>=(x: Double): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>=(x)
- Definition Classes
- Float
-
def
>=(x: Float): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>=(x)
- Definition Classes
- Float
-
def
>=(x: Long): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>=(x)
- Definition Classes
- Float
-
def
>=(x: Int): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>=(x)
- Definition Classes
- Float
-
def
>=(x: Char): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>=(x)
- Definition Classes
- Float
-
def
>=(x: Short): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>=(x)
- Definition Classes
- Float
-
def
>=(x: Byte): Boolean
Returns
true
if this value is greater than or equal to x,false
otherwise.Returns
true
if this value is greater than or equal to x,false
otherwise.- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).>=(x)
- Definition Classes
- Float
-
def
byteValue(): Byte
- Implicit
- This member is added by an implicit conversion from Long to java.lang.Long performed by method long2Long in scala.Predef.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(long: java.lang.Long).byteValue()
- Definition Classes
- Long → Number
-
def
byteValue(): Byte
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(long: RichLong).byteValue()
- Definition Classes
- RichLong → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
doubleValue(): Double
- Implicit
- This member is added by an implicit conversion from Long to java.lang.Long performed by method long2Long in scala.Predef.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(long: java.lang.Long).doubleValue()
- Definition Classes
- Long → Number
-
def
doubleValue(): Double
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(long: RichLong).doubleValue()
- Definition Classes
- RichLong → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
equals(arg0: Any): Boolean
The equality method for reference types.
The equality method for reference types. Default implementation delegates to
eq
.See also
equals
in scala.Any.- returns
true
if the receiver object is equivalent to the argument;false
otherwise.
- Implicit
- This member is added by an implicit conversion from Long to java.lang.Long performed by method long2Long in scala.Predef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: java.lang.Long).equals(arg0)
- Definition Classes
- Long → AnyRef → Any
-
def
floatValue(): Float
- Implicit
- This member is added by an implicit conversion from Long to java.lang.Long performed by method long2Long in scala.Predef.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(long: java.lang.Long).floatValue()
- Definition Classes
- Long → Number
-
def
floatValue(): Float
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(long: RichLong).floatValue()
- Definition Classes
- RichLong → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
hashCode(): Int
The hashCode method for reference types.
The hashCode method for reference types. See hashCode in scala.Any.
- returns
the hash code value for this object.
- Implicit
- This member is added by an implicit conversion from Long to java.lang.Long performed by method long2Long in scala.Predef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: java.lang.Long).hashCode()
- Definition Classes
- Long → AnyRef → Any
-
def
intValue(): Int
- Implicit
- This member is added by an implicit conversion from Long to java.lang.Long performed by method long2Long in scala.Predef.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(long: java.lang.Long).intValue()
- Definition Classes
- Long → Number
-
def
intValue(): Int
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(long: RichLong).intValue()
- Definition Classes
- RichLong → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
longValue(): Long
- Implicit
- This member is added by an implicit conversion from Long to java.lang.Long performed by method long2Long in scala.Predef.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(long: java.lang.Long).longValue()
- Definition Classes
- Long → Number
-
def
longValue(): Long
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(long: RichLong).longValue()
- Definition Classes
- RichLong → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
shortValue(): Short
- Implicit
- This member is added by an implicit conversion from Long to java.lang.Long performed by method long2Long in scala.Predef.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(long: java.lang.Long).shortValue()
- Definition Classes
- Long → Number
-
def
shortValue(): Short
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:(long: RichLong).shortValue()
- Definition Classes
- RichLong → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
toByte: Byte
Returns the value of this as a scala.Byte.
Returns the value of this as a scala.Byte. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: RichLong).toByte
- Definition Classes
- ScalaNumericAnyConversions
-
def
toByte: Byte
- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).toByte
- Definition Classes
- Double
-
def
toByte: Byte
- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).toByte
- Definition Classes
- Float
-
def
toChar: Char
Returns the value of this as a scala.Char.
Returns the value of this as a scala.Char. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: RichLong).toChar
- Definition Classes
- ScalaNumericAnyConversions
-
def
toChar: Char
- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).toChar
- Definition Classes
- Double
-
def
toChar: Char
- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).toChar
- Definition Classes
- Float
-
def
toDouble: Double
Returns the value of this as a scala.Double.
Returns the value of this as a scala.Double. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: RichLong).toDouble
- Definition Classes
- ScalaNumericAnyConversions
-
def
toDouble: Double
- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).toDouble
- Definition Classes
- Double
-
def
toDouble: Double
- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).toDouble
- Definition Classes
- Float
-
def
toFloat: Float
Returns the value of this as a scala.Float.
Returns the value of this as a scala.Float. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: RichLong).toFloat
- Definition Classes
- ScalaNumericAnyConversions
-
def
toFloat: Float
- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).toFloat
- Definition Classes
- Double
-
def
toFloat: Float
- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).toFloat
- Definition Classes
- Float
-
def
toInt: Int
Returns the value of this as an scala.Int.
Returns the value of this as an scala.Int. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: RichLong).toInt
- Definition Classes
- ScalaNumericAnyConversions
-
def
toInt: Int
- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).toInt
- Definition Classes
- Double
-
def
toInt: Int
- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).toInt
- Definition Classes
- Float
-
def
toLong: Long
Returns the value of this as a scala.Long.
Returns the value of this as a scala.Long. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: RichLong).toLong
- Definition Classes
- ScalaNumericAnyConversions
-
def
toLong: Long
- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).toLong
- Definition Classes
- Double
-
def
toLong: Long
- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).toLong
- Definition Classes
- Float
-
def
toShort: Short
Returns the value of this as a scala.Short.
Returns the value of this as a scala.Short. This may involve rounding or truncation.
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: RichLong).toShort
- Definition Classes
- ScalaNumericAnyConversions
-
def
toShort: Short
- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).toShort
- Definition Classes
- Double
-
def
toShort: Short
- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).toShort
- Definition Classes
- Float
-
def
toString(): String
Creates a String representation of this object.
Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.
- returns
a String representation of the object.
- Implicit
- This member is added by an implicit conversion from Long to java.lang.Long performed by method long2Long in scala.Predef.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: java.lang.Long).toString()
- Definition Classes
- Long → AnyRef → Any
-
def
toString(): String
Returns a string representation of the object.
Returns a string representation of the object.
The default representation is platform dependent.
- returns
a string representation of the object.
- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: RichLong).toString()
- Definition Classes
- Proxy → Any
-
def
unary_+: Double
Returns this value, unmodified.
Returns this value, unmodified.
- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).unary_+
- Definition Classes
- Double
-
def
unary_+: Float
Returns this value, unmodified.
Returns this value, unmodified.
- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).unary_+
- Definition Classes
- Float
-
def
unary_-: Double
Returns the negation of this value.
Returns the negation of this value.
- Implicit
- This member is added by an implicit conversion from Long to Double performed by method long2double in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Double).unary_-
- Definition Classes
- Double
-
def
unary_-: Float
Returns the negation of this value.
Returns the negation of this value.
- Implicit
- This member is added by an implicit conversion from Long to Float performed by method long2float in scala.Long.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(long: Float).unary_-
- Definition Classes
- Float
Deprecated Value Members
-
def
round: Long
There is no reason to round a
Long
, but this method is provided to avoid accidental conversion toInt
throughFloat
.There is no reason to round a
Long
, but this method is provided to avoid accidental conversion toInt
throughFloat
.- Implicit
- This member is added by an implicit conversion from Long to RichLong performed by method longWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichLong
- Annotations
- @deprecated
- Deprecated
(Since version 2.11.0) this is an integer type; there is no reason to round it. Perhaps you meant to call this on a floating-point value?
This is the documentation for the Scala standard library.
Package structure
The scala package contains core types like
Int
,Float
,Array
orOption
which are accessible in all Scala compilation units without explicit qualification or imports.Notable packages include:
scala.collection
and its sub-packages contain Scala's collections frameworkscala.collection.immutable
- Immutable, sequential data-structures such asVector
,List
,Range
,HashMap
orHashSet
scala.collection.mutable
- Mutable, sequential data-structures such asArrayBuffer
,StringBuilder
,HashMap
orHashSet
scala.collection.concurrent
- Mutable, concurrent data-structures such asTrieMap
scala.collection.parallel.immutable
- Immutable, parallel data-structures such asParVector
,ParRange
,ParHashMap
orParHashSet
scala.collection.parallel.mutable
- Mutable, parallel data-structures such asParArray
,ParHashMap
,ParTrieMap
orParHashSet
scala.concurrent
- Primitives for concurrent programming such asFutures
andPromises
scala.io
- Input and output operationsscala.math
- Basic math functions and additional numeric types likeBigInt
andBigDecimal
scala.sys
- Interaction with other processes and the operating systemscala.util.matching
- Regular expressionsOther packages exist. See the complete list on the right.
Additional parts of the standard library are shipped as separate libraries. These include:
scala.reflect
- Scala's reflection API (scala-reflect.jar)scala.xml
- XML parsing, manipulation, and serialization (scala-xml.jar)scala.swing
- A convenient wrapper around Java's GUI framework called Swing (scala-swing.jar)scala.util.parsing
- Parser combinators (scala-parser-combinators.jar)Automatic imports
Identifiers in the scala package and the
scala.Predef
object are always in scope by default.Some of these identifiers are type aliases provided as shortcuts to commonly used classes. For example,
List
is an alias forscala.collection.immutable.List
.Other aliases refer to classes provided by the underlying platform. For example, on the JVM,
String
is an alias forjava.lang.String
.