abstract final class Byte extends AnyVal
Byte
, a 8-bit signed integer (equivalent to Java's byte
primitive type) is a
subtype of scala.AnyVal. Instances of Byte
are not
represented by an object in the underlying runtime system.
There is an implicit conversion from scala.Byte => scala.runtime.RichByte which provides useful non-primitive operations.
- Source
- Byte.scala
- Alphabetic
- By Inheritance
- Byte
- AnyVal
- Any
- by byte2Byte
- by byteWrapper
- by byte2double
- by byte2float
- by byte2long
- by byte2int
- by byte2short
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
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): Int
Returns the remainder of the division of this value by
x
. - abstract def %(x: Char): Int
Returns the remainder of the division of this value by
x
. - abstract def %(x: Short): Int
Returns the remainder of the division of this value by
x
. - abstract def %(x: Byte): Int
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): Int
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): Int
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): Int
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): Int
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): Int
Returns the product of this value and
x
. - abstract def *(x: Char): Int
Returns the product of this value and
x
. - abstract def *(x: Short): Int
Returns the product of this value and
x
. - abstract def *(x: Byte): Int
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): Int
Returns the sum of this value and
x
. - abstract def +(x: Char): Int
Returns the sum of this value and
x
. - abstract def +(x: Short): Int
Returns the sum of this value and
x
. - abstract def +(x: Byte): Int
Returns the sum of this value and
x
. - 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): Int
Returns the difference of this value and
x
. - abstract def -(x: Char): Int
Returns the difference of this value and
x
. - abstract def -(x: Short): Int
Returns the difference of this value and
x
. - abstract def -(x: Byte): Int
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): Int
Returns the quotient of this value and
x
. - abstract def /(x: Char): Int
Returns the quotient of this value and
x
. - abstract def /(x: Short): Int
Returns the quotient of this value and
x
. - abstract def /(x: Byte): Int
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: Int): Int
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: Int): Int
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): Int
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): Int
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): Int
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): Int
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): Int
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_+: Int
Returns this value, unmodified.
- abstract def unary_-: Int
Returns the negation of this value.
- abstract def unary_~: Int
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): Int
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): Int
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): Int
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): Int
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: String): String
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Adding a number and a String is deprecated. Use the string interpolation
s"$num$str"
- abstract def <<(x: Long): Int
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.
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.7) shifting a value by a
Long
argument is deprecated (except when the value is aLong
). CalltoInt
on the argument to maintain the current behavior and avoid the deprecation warning.6 << 3 == 48 // in binary: 0110 << 3 == 0110000
Example: - abstract def >>(x: Long): Int
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.
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.7) shifting a value by a
Long
argument is deprecated (except when the value is aLong
). CalltoInt
on the argument to maintain the current behavior and avoid the deprecation warning.-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
Example: - abstract def >>>(x: Long): Int
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.
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.7) shifting a value by a
Long
argument is deprecated (except when the value is aLong
). CalltoInt
on the argument to maintain the current behavior and avoid the deprecation warning.21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
, -21 >>> 3 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
Examples:
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): (Byte, B)
- Implicit
- This member is added by an implicit conversion from Byte toArrowAssoc[Byte] 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: Byte
- Implicit
- This member is added by an implicit conversion from Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichByte → ScalaNumberProxy
- final def asInstanceOf[T0]: T0
Forces the compiler to treat the receiver object as having type
T0
, even though doing so may violate type safety.Forces the compiler to treat the receiver object as having type
T0
, even though doing so may violate type safety.This method is useful when you believe you have type information the compiler doesn't, and it also isn't possible to check the type at runtime. In such situations, skipping type safety is the only option.
It is platform dependent whether
asInstanceOf
has any effect at runtime. It might do a runtime type test on the erasure ofT0
, insert a conversion (such as boxing/unboxing), fill in a default value, or do nothing at all.In particular,
asInstanceOf
is not a type test. It does **not** mean:this match { case x: T0 => x case _ => throw ClassCastException("...")
Use pattern matching or isInstanceOf for type testing instead.
Situations where
asInstanceOf
is useful:- when flow analysis fails to deduce
T0
automatically - when down-casting a type parameter or an abstract type member (which cannot be checked at runtime due to type erasure) If there is any doubt and you are able to type test instead, you should do so.
Be careful of using
asInstanceOf
whenT0
is a primitive type. WhenT0
is primitive,asInstanceOf
may insert a conversion instead of a type test. If your intent is to convert, use atoT
method (x.toChar
,x.toByte
, etc.).- returns
the receiver object.
- Definition Classes
- Any
- Exceptions thrown
ClassCastException
if the receiver is not an instance of the erasure ofT0
, if that can be checked on this platform
- when flow analysis fails to deduce
- def byteValue(): Byte
- Implicit
- This member is added by an implicit conversion from Byte tojava.lang.Byte performed by method byte2Byte in scala.Predef.
- Definition Classes
- Byte → Number
- def byteValue: Byte
- Implicit
- This member is added by an implicit conversion from Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichByte → ScalaNumberProxy → ScalaNumericAnyConversions
- def compare(y: Byte): 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
- def compareTo(arg0: java.lang.Byte): Int
- Implicit
- This member is added by an implicit conversion from Byte tojava.lang.Byte performed by method byte2Byte in scala.Predef.
- Definition Classes
- Byte → Comparable
- def compareTo(that: Byte): Int
Result of comparing
this
with operandthat
. - def doubleValue(): Double
- Implicit
- This member is added by an implicit conversion from Byte tojava.lang.Byte performed by method byte2Byte in scala.Predef.
- Definition Classes
- Byte → Number
- def doubleValue: Double
- Implicit
- This member is added by an implicit conversion from Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichByte → ScalaNumberProxy → ScalaNumericAnyConversions
- def ensuring(cond: (Byte) => Boolean, msg: => Any): Byte
- Implicit
- This member is added by an implicit conversion from Byte toEnsuring[Byte] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: (Byte) => Boolean): Byte
- Implicit
- This member is added by an implicit conversion from Byte toEnsuring[Byte] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean, msg: => Any): Byte
- Implicit
- This member is added by an implicit conversion from Byte toEnsuring[Byte] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
- def ensuring(cond: Boolean): Byte
- Implicit
- This member is added by an implicit conversion from Byte toEnsuring[Byte] 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 floatValue(): Float
- Implicit
- This member is added by an implicit conversion from Byte tojava.lang.Byte performed by method byte2Byte in scala.Predef.
- Definition Classes
- Byte → Number
- def floatValue: Float
- Implicit
- This member is added by an implicit conversion from Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichByte → ScalaNumberProxy → ScalaNumericAnyConversions
- def getClass(): Class[Byte]
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
- def intValue(): Int
- Implicit
- This member is added by an implicit conversion from Byte tojava.lang.Byte performed by method byte2Byte in scala.Predef.
- Definition Classes
- Byte → Number
- def intValue: Int
- Implicit
- This member is added by an implicit conversion from Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichByte → ScalaNumberProxy → ScalaNumericAnyConversions
- final def isInstanceOf[T0]: Boolean
Test whether the dynamic type of the receiver object has the same erasure as
T0
.Test whether the dynamic type of the receiver object has the same erasure as
T0
.Depending on what
T0
is, the test is done in one of the below ways:T0
is a non-parameterized class type, e.g.BigDecimal
: this method returnstrue
if the value of the receiver object is aBigDecimal
or a subtype ofBigDecimal
.T0
is a parameterized class type, e.g.List[Int]
: this method returnstrue
if the value of the receiver object is someList[X]
for anyX
. For example,List(1, 2, 3).isInstanceOf[List[String]]
will return true.T0
is some singleton typex.type
or literalx
: this method returnsthis.eq(x)
. For example,x.isInstanceOf[1]
is equivalent tox.eq(1)
T0
is an intersectionX with Y
orX & Y: this method is equivalent to
x.isInstanceOf[X] && x.isInstanceOf[Y]T0
is a unionX | Y
: this method is equivalent tox.isInstanceOf[X] || x.isInstanceOf[Y]
T0
is a type parameter or an abstract type member: this method is equivalent toisInstanceOf[U]
whereU
isT0
's upper bound,Any
ifT0
is unbounded. For example,x.isInstanceOf[A]
whereA
is an unbounded type parameter will return true for any value ofx
.
This is exactly equivalent to the type pattern
_: T0
- returns
true
if the receiver object is an instance of erasure of typeT0
;false
otherwise.
- Definition Classes
- Any
- Note
due to the unexpectedness of
List(1, 2, 3).isInstanceOf[List[String]]
returning true andx.isInstanceOf[A]
whereA
is a type parameter or abstract member returning true, these forms issue a warning.
- 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 Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichByte → 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 Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- 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 Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- ScalaNumericAnyConversions
- 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 Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- ScalaNumericAnyConversions
- def longValue(): Long
- Implicit
- This member is added by an implicit conversion from Byte tojava.lang.Byte performed by method byte2Byte in scala.Predef.
- Definition Classes
- Byte → Number
- def longValue: Long
- Implicit
- This member is added by an implicit conversion from Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichByte → ScalaNumberProxy → ScalaNumericAnyConversions
- def max(that: Byte): Byte
- Implicit
- This member is added by an implicit conversion from Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichByte → ScalaNumberProxy
- def min(that: Byte): Byte
- Implicit
- This member is added by an implicit conversion from Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichByte → ScalaNumberProxy
- val self: Byte
- def shortValue(): Short
- Implicit
- This member is added by an implicit conversion from Byte tojava.lang.Byte performed by method byte2Byte in scala.Predef.
- Definition Classes
- Byte → Number
- def shortValue: Short
- Implicit
- This member is added by an implicit conversion from Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichByte → ScalaNumberProxy → ScalaNumericAnyConversions
- def sign: Byte
- Implicit
- This member is added by an implicit conversion from Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- ScalaNumberProxy
- 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
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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).!=(x)
- Definition Classes
- Float
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).!=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).!=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).!=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).!=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).!=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).!=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).!=(x)
- Definition Classes
- Long
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).!=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).!=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).!=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).!=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).!=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).!=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).!=(x)
- Definition Classes
- Int
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).!=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).!=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).!=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).!=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).!=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).!=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).!=(x)
- Definition Classes
- Short
- 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).%(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).%(x)
- Definition Classes
- Long
- def %(x: Long): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).%(x)
- Definition Classes
- Long
- def %(x: Int): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).%(x)
- Definition Classes
- Long
- def %(x: Char): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).%(x)
- Definition Classes
- Long
- def %(x: Short): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).%(x)
- Definition Classes
- Long
- def %(x: Byte): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).%(x)
- Definition Classes
- Long
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).%(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).%(x)
- Definition Classes
- Int
- def %(x: Long): Long
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).%(x)
- Definition Classes
- Int
- def %(x: Int): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).%(x)
- Definition Classes
- Int
- def %(x: Char): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).%(x)
- Definition Classes
- Int
- def %(x: Short): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).%(x)
- Definition Classes
- Int
- def %(x: Byte): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).%(x)
- Definition Classes
- Int
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).%(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).%(x)
- Definition Classes
- Short
- def %(x: Long): Long
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).%(x)
- Definition Classes
- Short
- def %(x: Int): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).%(x)
- Definition Classes
- Short
- def %(x: Char): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).%(x)
- Definition Classes
- Short
- def %(x: Short): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).%(x)
- Definition Classes
- Short
- def %(x: Byte): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).%(x)
- Definition Classes
- Short
- def &(x: Long): Long
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).&(x)
- Definition Classes
- Long
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Int): Long
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).&(x)
- Definition Classes
- Long
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Char): Long
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).&(x)
- Definition Classes
- Long
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Short): Long
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).&(x)
- Definition Classes
- Long
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Byte): Long
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).&(x)
- Definition Classes
- Long
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Long): Long
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).&(x)
- Definition Classes
- Int
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Int): Int
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).&(x)
- Definition Classes
- Int
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Char): Int
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).&(x)
- Definition Classes
- Int
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Short): Int
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).&(x)
- Definition Classes
- Int
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Byte): Int
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).&(x)
- Definition Classes
- Int
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Long): Long
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).&(x)
- Definition Classes
- Short
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Int): Int
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).&(x)
- Definition Classes
- Short
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Char): Int
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).&(x)
- Definition Classes
- Short
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Short): Int
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).&(x)
- Definition Classes
- Short
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - def &(x: Byte): Int
Returns the bitwise AND of this value and
x
.Returns the bitwise AND of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).&(x)
- Definition Classes
- Short
(0xf0 & 0xaa) == 0xa0 // in binary: 11110000 // & 10101010 // -------- // 10100000
Example: - 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).*(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).*(x)
- Definition Classes
- Long
- def *(x: Long): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).*(x)
- Definition Classes
- Long
- def *(x: Int): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).*(x)
- Definition Classes
- Long
- def *(x: Char): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).*(x)
- Definition Classes
- Long
- def *(x: Short): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).*(x)
- Definition Classes
- Long
- def *(x: Byte): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).*(x)
- Definition Classes
- Long
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).*(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).*(x)
- Definition Classes
- Int
- def *(x: Long): Long
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).*(x)
- Definition Classes
- Int
- def *(x: Int): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).*(x)
- Definition Classes
- Int
- def *(x: Char): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).*(x)
- Definition Classes
- Int
- def *(x: Short): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).*(x)
- Definition Classes
- Int
- def *(x: Byte): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).*(x)
- Definition Classes
- Int
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).*(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).*(x)
- Definition Classes
- Short
- def *(x: Long): Long
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).*(x)
- Definition Classes
- Short
- def *(x: Int): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).*(x)
- Definition Classes
- Short
- def *(x: Char): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).*(x)
- Definition Classes
- Short
- def *(x: Short): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).*(x)
- Definition Classes
- Short
- def *(x: Byte): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).*(x)
- Definition Classes
- Short
- 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).+(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).+(x)
- Definition Classes
- Long
- def +(x: Long): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).+(x)
- Definition Classes
- Long
- def +(x: Int): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).+(x)
- Definition Classes
- Long
- def +(x: Char): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).+(x)
- Definition Classes
- Long
- def +(x: Short): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).+(x)
- Definition Classes
- Long
- def +(x: Byte): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).+(x)
- Definition Classes
- Long
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).+(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).+(x)
- Definition Classes
- Int
- def +(x: Long): Long
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).+(x)
- Definition Classes
- Int
- def +(x: Int): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).+(x)
- Definition Classes
- Int
- def +(x: Char): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).+(x)
- Definition Classes
- Int
- def +(x: Short): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).+(x)
- Definition Classes
- Int
- def +(x: Byte): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).+(x)
- Definition Classes
- Int
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).+(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).+(x)
- Definition Classes
- Short
- def +(x: Long): Long
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).+(x)
- Definition Classes
- Short
- def +(x: Int): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).+(x)
- Definition Classes
- Short
- def +(x: Char): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).+(x)
- Definition Classes
- Short
- def +(x: Short): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).+(x)
- Definition Classes
- Short
- def +(x: Byte): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).+(x)
- Definition Classes
- Short
- def +(other: String): String
- Implicit
- This member is added by an implicit conversion from Byte toany2stringadd[Byte] 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:(byte: any2stringadd[Byte]).+(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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).-(x)
- Definition Classes
- Float
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).-(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).-(x)
- Definition Classes
- Long
- def -(x: Long): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).-(x)
- Definition Classes
- Long
- def -(x: Int): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).-(x)
- Definition Classes
- Long
- def -(x: Char): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).-(x)
- Definition Classes
- Long
- def -(x: Short): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).-(x)
- Definition Classes
- Long
- def -(x: Byte): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).-(x)
- Definition Classes
- Long
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).-(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).-(x)
- Definition Classes
- Int
- def -(x: Long): Long
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).-(x)
- Definition Classes
- Int
- def -(x: Int): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).-(x)
- Definition Classes
- Int
- def -(x: Char): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).-(x)
- Definition Classes
- Int
- def -(x: Short): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).-(x)
- Definition Classes
- Int
- def -(x: Byte): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).-(x)
- Definition Classes
- Int
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).-(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).-(x)
- Definition Classes
- Short
- def -(x: Long): Long
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).-(x)
- Definition Classes
- Short
- def -(x: Int): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).-(x)
- Definition Classes
- Short
- def -(x: Char): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).-(x)
- Definition Classes
- Short
- def -(x: Short): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).-(x)
- Definition Classes
- Short
- def -(x: Byte): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).-(x)
- Definition Classes
- Short
- 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long)./(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long)./(x)
- Definition Classes
- Long
- def /(x: Long): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long)./(x)
- Definition Classes
- Long
- def /(x: Int): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long)./(x)
- Definition Classes
- Long
- def /(x: Char): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long)./(x)
- Definition Classes
- Long
- def /(x: Short): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long)./(x)
- Definition Classes
- Long
- def /(x: Byte): Long
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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long)./(x)
- Definition Classes
- Long
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int)./(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int)./(x)
- Definition Classes
- Int
- def /(x: Long): Long
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int)./(x)
- Definition Classes
- Int
- def /(x: Int): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int)./(x)
- Definition Classes
- Int
- def /(x: Char): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int)./(x)
- Definition Classes
- Int
- def /(x: Short): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int)./(x)
- Definition Classes
- Int
- def /(x: Byte): Int
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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int)./(x)
- Definition Classes
- Int
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short)./(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short)./(x)
- Definition Classes
- Short
- def /(x: Long): Long
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short)./(x)
- Definition Classes
- Short
- def /(x: Int): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short)./(x)
- Definition Classes
- Short
- def /(x: Char): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short)./(x)
- Definition Classes
- Short
- def /(x: Short): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short)./(x)
- Definition Classes
- Short
- def /(x: Byte): Int
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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short)./(x)
- Definition Classes
- Short
- def <(that: Byte): 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 Byte toRichByte performed by method byteWrapper 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:(byte: RichByte).<(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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).<(x)
- Definition Classes
- Float
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<(x)
- Definition Classes
- Long
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<(x)
- Definition Classes
- Int
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<(x)
- Definition Classes
- Short
- 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.
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<<(x)
- Definition Classes
- Long
6 << 3 == 48 // in binary: 0110 << 3 == 0110000
Example: - 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.
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<<(x)
- Definition Classes
- Long
6 << 3 == 48 // in binary: 0110 << 3 == 0110000
Example: - def <<(x: Int): Int
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.
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<<(x)
- Definition Classes
- Int
6 << 3 == 48 // in binary: 0110 << 3 == 0110000
Example: - def <<(x: Int): Int
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.
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<<(x)
- Definition Classes
- Short
6 << 3 == 48 // in binary: 0110 << 3 == 0110000
Example: - def <=(that: Byte): 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 Byte toRichByte performed by method byteWrapper 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:(byte: RichByte).<=(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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).<=(x)
- Definition Classes
- Float
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).<=(x)
- Definition Classes
- Long
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<=(x)
- Definition Classes
- Int
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<=(x)
- Definition Classes
- Short
- 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).==(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).==(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).==(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).==(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).==(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).==(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).==(x)
- Definition Classes
- Long
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).==(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).==(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).==(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).==(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).==(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).==(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).==(x)
- Definition Classes
- Int
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).==(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).==(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).==(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).==(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).==(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).==(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).==(x)
- Definition Classes
- Short
- def >(that: Byte): 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 Byte toRichByte performed by method byteWrapper 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:(byte: RichByte).>(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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).>(x)
- Definition Classes
- Float
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>(x)
- Definition Classes
- Long
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>(x)
- Definition Classes
- Int
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>(x)
- Definition Classes
- Short
- def >=(that: Byte): 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 Byte toRichByte performed by method byteWrapper 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:(byte: RichByte).>=(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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).>=(x)
- Definition Classes
- Float
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>=(x)
- Definition Classes
- Long
- 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 Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>=(x)
- Definition Classes
- Long
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>=(x)
- Definition Classes
- Int
- 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 Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>=(x)
- Definition Classes
- Int
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>=(x)
- Definition Classes
- Short
- 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 Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>=(x)
- Definition Classes
- Short
- 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.
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>>(x)
- Definition Classes
- Long
-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
Example: - 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.
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>>(x)
- Definition Classes
- Long
-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
Example: - def >>(x: Int): Int
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.
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>>(x)
- Definition Classes
- Int
-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
Example: - def >>(x: Int): Int
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.
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>>(x)
- Definition Classes
- Short
-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
Example: - 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.
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>>>(x)
- Definition Classes
- Long
21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
, -21 >>> 3 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
Examples: - 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.
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).>>>(x)
- Definition Classes
- Long
21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
, -21 >>> 3 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
Examples: - def >>>(x: Int): Int
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.
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>>>(x)
- Definition Classes
- Int
21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
, -21 >>> 3 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
Examples: - def >>>(x: Int): Int
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.
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>>>(x)
- Definition Classes
- Short
21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
, -21 >>> 3 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
Examples: - def ^(x: Long): Long
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).^(x)
- Definition Classes
- Long
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Int): Long
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).^(x)
- Definition Classes
- Long
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Char): Long
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).^(x)
- Definition Classes
- Long
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Short): Long
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).^(x)
- Definition Classes
- Long
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Byte): Long
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).^(x)
- Definition Classes
- Long
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Long): Long
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).^(x)
- Definition Classes
- Int
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Int): Int
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).^(x)
- Definition Classes
- Int
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Char): Int
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).^(x)
- Definition Classes
- Int
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Short): Int
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).^(x)
- Definition Classes
- Int
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Byte): Int
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).^(x)
- Definition Classes
- Int
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Long): Long
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).^(x)
- Definition Classes
- Short
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Int): Int
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).^(x)
- Definition Classes
- Short
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Char): Int
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).^(x)
- Definition Classes
- Short
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Short): Int
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).^(x)
- Definition Classes
- Short
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def ^(x: Byte): Int
Returns the bitwise XOR of this value and
x
.Returns the bitwise XOR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).^(x)
- Definition Classes
- Short
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: - def equals(arg0: AnyRef): 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 Byte tojava.lang.Byte performed by method byte2Byte 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:(byte: java.lang.Byte).equals(arg0)
- Definition Classes
- Byte → AnyRef → Any
- 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 Byte tojava.lang.Byte performed by method byte2Byte 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:(byte: java.lang.Byte).hashCode()
- Definition Classes
- Byte → AnyRef → Any
- 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 Byte toRichByte performed by method byteWrapper 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:(byte: RichByte).toByte
- Definition Classes
- ScalaNumericAnyConversions
- def toByte: Byte
- Implicit
- This member is added by an implicit conversion from Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: Double).toByte
- Definition Classes
- Double
- def toByte: Byte
- Implicit
- This member is added by an implicit conversion from Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).toByte
- Definition Classes
- Float
- def toByte: Byte
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).toByte
- Definition Classes
- Long
- def toByte: Byte
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).toByte
- Definition Classes
- Int
- def toByte: Byte
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).toByte
- Definition Classes
- Short
- 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 Byte toRichByte performed by method byteWrapper 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:(byte: RichByte).toChar
- Definition Classes
- ScalaNumericAnyConversions
- def toChar: Char
- Implicit
- This member is added by an implicit conversion from Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: Double).toChar
- Definition Classes
- Double
- def toChar: Char
- Implicit
- This member is added by an implicit conversion from Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).toChar
- Definition Classes
- Float
- def toChar: Char
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).toChar
- Definition Classes
- Long
- def toChar: Char
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).toChar
- Definition Classes
- Int
- def toChar: Char
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).toChar
- Definition Classes
- Short
- 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 Byte toRichByte performed by method byteWrapper 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:(byte: RichByte).toDouble
- Definition Classes
- ScalaNumericAnyConversions
- def toDouble: Double
- Implicit
- This member is added by an implicit conversion from Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: Double).toDouble
- Definition Classes
- Double
- def toDouble: Double
- Implicit
- This member is added by an implicit conversion from Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).toDouble
- Definition Classes
- Float
- def toDouble: Double
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).toDouble
- Definition Classes
- Long
- def toDouble: Double
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).toDouble
- Definition Classes
- Int
- def toDouble: Double
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).toDouble
- Definition Classes
- Short
- 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 Byte toRichByte performed by method byteWrapper 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:(byte: RichByte).toFloat
- Definition Classes
- ScalaNumericAnyConversions
- def toFloat: Float
- Implicit
- This member is added by an implicit conversion from Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: Double).toFloat
- Definition Classes
- Double
- def toFloat: Float
- Implicit
- This member is added by an implicit conversion from Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).toFloat
- Definition Classes
- Float
- def toFloat: Float
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).toFloat
- Definition Classes
- Long
- def toFloat: Float
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).toFloat
- Definition Classes
- Int
- def toFloat: Float
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).toFloat
- Definition Classes
- Short
- 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 Byte toRichByte performed by method byteWrapper 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:(byte: RichByte).toInt
- Definition Classes
- ScalaNumericAnyConversions
- def toInt: Int
- Implicit
- This member is added by an implicit conversion from Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: Double).toInt
- Definition Classes
- Double
- def toInt: Int
- Implicit
- This member is added by an implicit conversion from Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).toInt
- Definition Classes
- Float
- def toInt: Int
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).toInt
- Definition Classes
- Long
- def toInt: Int
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).toInt
- Definition Classes
- Int
- def toInt: Int
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).toInt
- Definition Classes
- Short
- 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 Byte toRichByte performed by method byteWrapper 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:(byte: RichByte).toLong
- Definition Classes
- ScalaNumericAnyConversions
- def toLong: Long
- Implicit
- This member is added by an implicit conversion from Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: Double).toLong
- Definition Classes
- Double
- def toLong: Long
- Implicit
- This member is added by an implicit conversion from Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).toLong
- Definition Classes
- Float
- def toLong: Long
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).toLong
- Definition Classes
- Long
- def toLong: Long
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).toLong
- Definition Classes
- Int
- def toLong: Long
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).toLong
- Definition Classes
- Short
- 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 Byte toRichByte performed by method byteWrapper 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:(byte: RichByte).toShort
- Definition Classes
- ScalaNumericAnyConversions
- def toShort: Short
- Implicit
- This member is added by an implicit conversion from Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: Double).toShort
- Definition Classes
- Double
- def toShort: Short
- Implicit
- This member is added by an implicit conversion from Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).toShort
- Definition Classes
- Float
- def toShort: Short
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).toShort
- Definition Classes
- Long
- def toShort: Short
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).toShort
- Definition Classes
- Int
- def toShort: Short
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).toShort
- Definition Classes
- Short
- 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 Byte tojava.lang.Byte performed by method byte2Byte 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:(byte: java.lang.Byte).toString()
- Definition Classes
- Byte → 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 Byte toRichByte performed by method byteWrapper 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:(byte: RichByte).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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).unary_+
- Definition Classes
- Float
- def unary_+: Long
Returns this value, unmodified.
Returns this value, unmodified.
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).unary_+
- Definition Classes
- Long
- def unary_+: Int
Returns this value, unmodified.
Returns this value, unmodified.
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).unary_+
- Definition Classes
- Int
- def unary_+: Int
Returns this value, unmodified.
Returns this value, unmodified.
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).unary_+
- Definition Classes
- Short
- 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 Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: 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 Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).unary_-
- Definition Classes
- Float
- def unary_-: Long
Returns the negation of this value.
Returns the negation of this value.
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).unary_-
- Definition Classes
- Long
- def unary_-: Int
Returns the negation of this value.
Returns the negation of this value.
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).unary_-
- Definition Classes
- Int
- def unary_-: Int
Returns the negation of this value.
Returns the negation of this value.
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).unary_-
- Definition Classes
- Short
- def unary_~: Long
Returns the bitwise negation of this value.
Returns the bitwise negation of this value.
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).unary_~
- Definition Classes
- Long
~5 == -6 // in binary: ~00000101 == // 11111010
Example: - def unary_~: Int
Returns the bitwise negation of this value.
Returns the bitwise negation of this value.
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).unary_~
- Definition Classes
- Int
~5 == -6 // in binary: ~00000101 == // 11111010
Example: - def unary_~: Int
Returns the bitwise negation of this value.
Returns the bitwise negation of this value.
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).unary_~
- Definition Classes
- Short
~5 == -6 // in binary: ~00000101 == // 11111010
Example: - def |(x: Long): Long
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).|(x)
- Definition Classes
- Long
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Int): Long
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).|(x)
- Definition Classes
- Long
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Char): Long
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).|(x)
- Definition Classes
- Long
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Short): Long
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).|(x)
- Definition Classes
- Long
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Byte): Long
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).|(x)
- Definition Classes
- Long
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Long): Long
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).|(x)
- Definition Classes
- Int
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Int): Int
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).|(x)
- Definition Classes
- Int
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Char): Int
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).|(x)
- Definition Classes
- Int
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Short): Int
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).|(x)
- Definition Classes
- Int
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Byte): Int
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).|(x)
- Definition Classes
- Int
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Long): Long
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).|(x)
- Definition Classes
- Short
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Int): Int
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).|(x)
- Definition Classes
- Short
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Char): Int
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).|(x)
- Definition Classes
- Short
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Short): Int
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).|(x)
- Definition Classes
- Short
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example: - def |(x: Byte): Int
Returns the bitwise OR of this value and
x
.Returns the bitwise OR of this value and
x
.- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).|(x)
- Definition Classes
- Short
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example:
Deprecated Value Members
- def +(x: String): String
- Implicit
- This member is added by an implicit conversion from Byte toDouble performed by method byte2double in scala.Byte.
- 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:(byte: Double).+(x)
- Definition Classes
- Double
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Adding a number and a String is deprecated. Use the string interpolation
s"$num$str"
- def +(x: String): String
- Implicit
- This member is added by an implicit conversion from Byte toFloat performed by method byte2float in scala.Byte.
- 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:(byte: Float).+(x)
- Definition Classes
- Float
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Adding a number and a String is deprecated. Use the string interpolation
s"$num$str"
- def +(x: String): String
- Implicit
- This member is added by an implicit conversion from Byte toLong performed by method byte2long in scala.Byte.
- 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:(byte: Long).+(x)
- Definition Classes
- Long
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Adding a number and a String is deprecated. Use the string interpolation
s"$num$str"
- def +(x: String): String
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).+(x)
- Definition Classes
- Int
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Adding a number and a String is deprecated. Use the string interpolation
s"$num$str"
- def +(x: String): String
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).+(x)
- Definition Classes
- Short
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Adding a number and a String is deprecated. Use the string interpolation
s"$num$str"
- def <<(x: Long): Int
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.
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).<<(x)
- Definition Classes
- Int
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.7) shifting a value by a
Long
argument is deprecated (except when the value is aLong
). CalltoInt
on the argument to maintain the current behavior and avoid the deprecation warning.6 << 3 == 48 // in binary: 0110 << 3 == 0110000
Example: - def <<(x: Long): Int
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.
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).<<(x)
- Definition Classes
- Short
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.7) shifting a value by a
Long
argument is deprecated (except when the value is aLong
). CalltoInt
on the argument to maintain the current behavior and avoid the deprecation warning.6 << 3 == 48 // in binary: 0110 << 3 == 0110000
Example: - def >>(x: Long): Int
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.
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>>(x)
- Definition Classes
- Int
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.7) shifting a value by a
Long
argument is deprecated (except when the value is aLong
). CalltoInt
on the argument to maintain the current behavior and avoid the deprecation warning.-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
Example: - def >>(x: Long): Int
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.
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>>(x)
- Definition Classes
- Short
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.7) shifting a value by a
Long
argument is deprecated (except when the value is aLong
). CalltoInt
on the argument to maintain the current behavior and avoid the deprecation warning.-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
Example: - def >>>(x: Long): Int
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.
- Implicit
- This member is added by an implicit conversion from Byte toInt performed by method byte2int in scala.Byte.
- 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:(byte: Int).>>>(x)
- Definition Classes
- Int
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.7) shifting a value by a
Long
argument is deprecated (except when the value is aLong
). CalltoInt
on the argument to maintain the current behavior and avoid the deprecation warning.21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
, -21 >>> 3 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
Examples: - def >>>(x: Long): Int
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.
- Implicit
- This member is added by an implicit conversion from Byte toShort performed by method byte2short in scala.Byte.
- 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:(byte: Short).>>>(x)
- Definition Classes
- Short
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.7) shifting a value by a
Long
argument is deprecated (except when the value is aLong
). CalltoInt
on the argument to maintain the current behavior and avoid the deprecation warning.21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
, -21 >>> 3 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
Examples: - 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 Byte toStringFormat[Byte] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.12.16) Use
formatString.format(value)
instead ofvalue.formatted(formatString)
, or use thef""
string interpolator. In Java 15 and later,formatted
resolves to the new method in String which has reversed parameters.
- def isWhole: Boolean
- returns
true
if this number has no decimal component,false
otherwise.
- Implicit
- This member is added by an implicit conversion from Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- ScalaWholeNumberProxy → ScalaNumericAnyConversions
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.15) isWhole on an integer type is always true
- def signum: Int
- Implicit
- This member is added by an implicit conversion from Byte toRichByte performed by method byteWrapper in scala.LowPriorityImplicits.
- Definition Classes
- ScalaNumberProxy
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) use
sign
method instead
- def →[B](y: B): (Byte, B)
- Implicit
- This member is added by an implicit conversion from Byte toArrowAssoc[Byte] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.
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.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.collection.parallel
- Parallel collections (scala-parallel-collections.jar)scala.util.parsing
- Parser combinators (scala-parser-combinators.jar)scala.swing
- A convenient wrapper around Java's GUI framework called Swing (scala-swing.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
.