abstract final class Char extends AnyVal
Char
, a 16-bit unsigned integer (equivalent to Java's char
primitive type) is a
subtype of scala.AnyVal. Instances of Char
are not
represented by an object in the underlying runtime system.
There is an implicit conversion from scala.Char => scala.runtime.RichChar which provides useful non-primitive operations.
- Source
- Char.scala
- Alphabetic
- By Inheritance
- Char
- AnyVal
- Any
- by char2Character
- by charWrapper
- by char2double
- by char2float
- by char2long
- by char2int
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Abstract Value Members
-
abstract
def
!=(x: Double): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Float): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Long): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Int): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Char): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Short): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
!=(x: Byte): Boolean
Returns
true
if this value is not equal to x,false
otherwise. -
abstract
def
%(x: Double): Double
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Float): Float
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Long): Long
Returns the remainder of the division of this value by
x
. -
abstract
def
%(x: Int): 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: String): String
-
abstract
def
-(x: Double): Double
Returns the difference of this value and
x
. -
abstract
def
-(x: Float): Float
Returns the difference of this value and
x
. -
abstract
def
-(x: Long): Long
Returns the difference of this value and
x
. -
abstract
def
-(x: Int): 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: 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.
6 << 3 == 48 // in binary: 0110 << 3 == 0110000
Example: -
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: 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.
-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 in the left bits with the same value as the left-most bit of this.
Returns this value bit-shifted right by the specified number of bits, filling in the left bits with the same value as the left-most bit of this. The effect of this is to retain the sign of the value.
-21 >> 3 == -3 // in binary: 11111111 11111111 11111111 11101011 >> 3 == // 11111111 11111111 11111111 11111101
Example: -
abstract
def
>>>(x: Long): 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 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
, 21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
Examples: -
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 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
, 21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
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:
Concrete Value Members
-
def
abs: Char
Returns the absolute value of
this
.Returns the absolute value of
this
.- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichChar → ScalaNumberProxy
- def asDigit: Int
-
def
byteValue(): Byte
- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichChar → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
charValue(): Char
- Implicit
- This member is added by an implicit conversion from Char to Character performed by method char2Character in scala.Predef.
- Definition Classes
- Character
-
def
compare(y: Char): Int
Result of comparing
this
with operandthat
.Result of comparing
this
with operandthat
.Implement this method to determine how instances of A will be sorted.
Returns
x
where:x < 0
whenthis < that
x == 0
whenthis == that
x > 0
whenthis > that
- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- OrderedProxy → Ordered
-
def
compareTo(arg0: Character): Int
- Implicit
- This member is added by an implicit conversion from Char to Character performed by method char2Character in scala.Predef.
- Definition Classes
- Character → Comparable
-
def
compareTo(that: Char): Int
Result of comparing
this
with operandthat
. -
def
doubleValue(): Double
- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichChar → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
floatValue(): Float
- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichChar → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
getClass(): Class[Char]
Returns the runtime class representation of the object.
- def getDirectionality: Byte
- def getNumericValue: Int
- def getType: Int
-
def
intValue(): Int
- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichChar → ScalaNumberProxy → ScalaNumericAnyConversions
- def isControl: Boolean
- def isDigit: Boolean
- def isHighSurrogate: Boolean
- def isIdentifierIgnorable: Boolean
- def isLetter: Boolean
- def isLetterOrDigit: Boolean
- def isLowSurrogate: Boolean
- def isLower: Boolean
- def isMirrored: Boolean
- def isSpaceChar: Boolean
- def isSurrogate: Boolean
- def isTitleCase: Boolean
- def isUnicodeIdentifierPart: Boolean
- def isUnicodeIdentifierStart: Boolean
- def isUpper: Boolean
-
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 Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- 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 Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichChar → 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 Char to RichChar performed by method charWrapper 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 Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- ScalaNumericAnyConversions
- def isWhitespace: Boolean
-
def
isWhole(): Boolean
- returns
true
if this number has no decimal component,false
otherwise.
- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- ScalaWholeNumberProxy → ScalaNumericAnyConversions
-
def
longValue(): Long
- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichChar → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
max(that: Char): Char
Returns
this
ifthis > that
orthat
otherwise.Returns
this
ifthis > that
orthat
otherwise.- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichChar → ScalaNumberProxy
-
def
min(that: Char): Char
Returns
this
ifthis < that
orthat
otherwise.Returns
this
ifthis < that
orthat
otherwise.- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichChar → ScalaNumberProxy
- def reverseBytes: Char
- val self: Char
-
def
shortValue(): Short
- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichChar → ScalaNumberProxy → ScalaNumericAnyConversions
-
def
signum: Int
Returns the signum of
this
.Returns the signum of
this
.- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- RichChar → ScalaNumberProxy
-
def
to(end: Char, step: Char): Inclusive[Char]
- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- IntegralProxy → RangedProxy
-
def
to(end: Char): Inclusive[Char]
- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- IntegralProxy → RangedProxy
- def toLower: Char
- def toTitleCase: Char
- def toUpper: Char
-
def
underlying(): AnyRef
- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- ScalaNumberProxy → ScalaNumericAnyConversions
-
def
until(end: Char, step: Char): Exclusive[Char]
- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- IntegralProxy → RangedProxy
-
def
until(end: Char): Exclusive[Char]
- Implicit
- This member is added by an implicit conversion from Char to RichChar performed by method charWrapper in scala.LowPriorityImplicits.
- Definition Classes
- IntegralProxy → RangedProxy
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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).%(x)
- Definition Classes
- Int
-
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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).&(x)
- Definition Classes
- Int
(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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Double).+(x)
- Definition Classes
- Double
-
def
+(x: String): String
- Implicit
- This member is added by an implicit conversion from Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Float).+(x)
- Definition Classes
- Float
-
def
+(x: String): String
- Implicit
- This member is added by an implicit conversion from Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Long).+(x)
- Definition Classes
- Long
-
def
+(x: String): String
- Implicit
- This member is added by an implicit conversion from Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).+(x)
- Definition Classes
- Int
-
def
+(x: String): String
- Implicit
- This member is added by an implicit conversion from Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int)./(x)
- Definition Classes
- Int
-
def
<(that: Char): 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 Char to RichChar performed by method charWrapper 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:(char: RichChar).<(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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).<(x)
- Definition Classes
- Int
-
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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Long).<<(x)
- Definition Classes
- Long
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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).<<(x)
- Definition Classes
- Int
6 << 3 == 48 // in binary: 0110 << 3 == 0110000
Example: -
def
<=(that: Char): 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 Char to RichChar performed by method charWrapper 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:(char: RichChar).<=(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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).==(x)
- Definition Classes
- Int
-
def
>(that: Char): 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 Char to RichChar performed by method charWrapper 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:(char: RichChar).>(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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).>(x)
- Definition Classes
- Int
-
def
>=(that: Char): 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 Char to RichChar performed by method charWrapper 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:(char: RichChar).>=(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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).>=(x)
- Definition Classes
- Int
-
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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Long).>>(x)
- Definition Classes
- Long
-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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).>>(x)
- Definition Classes
- Int
-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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Long).>>>(x)
- Definition Classes
- Long
-21 >>> 3 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
, 21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Long).>>>(x)
- Definition Classes
- Long
-21 >>> 3 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
, 21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).>>>(x)
- Definition Classes
- Int
-21 >>> 3 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
, 21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).>>>(x)
- Definition Classes
- Int
-21 >>> 3 == 536870909 // in binary: 11111111 11111111 11111111 11101011 >>> 3 == // 00011111 11111111 11111111 11111101
, 21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).^(x)
- Definition Classes
- Int
(0xf0 ^ 0xaa) == 0x5a // in binary: 11110000 // ^ 10101010 // -------- // 01011010
Example: -
def
equals(arg0: Any): Boolean
The equality method for reference types.
The equality method for reference types. Default implementation delegates to
eq
.See also
equals
in scala.Any.- returns
true
if the receiver object is equivalent to the argument;false
otherwise.
- Implicit
- This member is added by an implicit conversion from Char to Character performed by method char2Character 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:(char: Character).equals(arg0)
- Definition Classes
- Character → 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 Char to Character performed by method char2Character 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:(char: Character).hashCode()
- Definition Classes
- Character → 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 Char to RichChar performed by method charWrapper 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:(char: RichChar).toByte
- Definition Classes
- ScalaNumericAnyConversions
-
def
toByte: Byte
- Implicit
- This member is added by an implicit conversion from Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Double).toByte
- Definition Classes
- Double
-
def
toByte: Byte
- Implicit
- This member is added by an implicit conversion from Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Float).toByte
- Definition Classes
- Float
-
def
toByte: Byte
- Implicit
- This member is added by an implicit conversion from Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Long).toByte
- Definition Classes
- Long
-
def
toByte: Byte
- Implicit
- This member is added by an implicit conversion from Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).toByte
- Definition Classes
- Int
-
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 Char to RichChar performed by method charWrapper 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:(char: RichChar).toChar
- Definition Classes
- ScalaNumericAnyConversions
-
def
toChar: Char
- Implicit
- This member is added by an implicit conversion from Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Double).toChar
- Definition Classes
- Double
-
def
toChar: Char
- Implicit
- This member is added by an implicit conversion from Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Float).toChar
- Definition Classes
- Float
-
def
toChar: Char
- Implicit
- This member is added by an implicit conversion from Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Long).toChar
- Definition Classes
- Long
-
def
toChar: Char
- Implicit
- This member is added by an implicit conversion from Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).toChar
- Definition Classes
- Int
-
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 Char to RichChar performed by method charWrapper 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:(char: RichChar).toDouble
- Definition Classes
- ScalaNumericAnyConversions
-
def
toDouble: Double
- Implicit
- This member is added by an implicit conversion from Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Double).toDouble
- Definition Classes
- Double
-
def
toDouble: Double
- Implicit
- This member is added by an implicit conversion from Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Float).toDouble
- Definition Classes
- Float
-
def
toDouble: Double
- Implicit
- This member is added by an implicit conversion from Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Long).toDouble
- Definition Classes
- Long
-
def
toDouble: Double
- Implicit
- This member is added by an implicit conversion from Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).toDouble
- Definition Classes
- Int
-
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 Char to RichChar performed by method charWrapper 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:(char: RichChar).toFloat
- Definition Classes
- ScalaNumericAnyConversions
-
def
toFloat: Float
- Implicit
- This member is added by an implicit conversion from Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Double).toFloat
- Definition Classes
- Double
-
def
toFloat: Float
- Implicit
- This member is added by an implicit conversion from Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Float).toFloat
- Definition Classes
- Float
-
def
toFloat: Float
- Implicit
- This member is added by an implicit conversion from Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Long).toFloat
- Definition Classes
- Long
-
def
toFloat: Float
- Implicit
- This member is added by an implicit conversion from Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).toFloat
- Definition Classes
- Int
-
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 Char to RichChar performed by method charWrapper 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:(char: RichChar).toInt
- Definition Classes
- ScalaNumericAnyConversions
-
def
toInt: Int
- Implicit
- This member is added by an implicit conversion from Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Double).toInt
- Definition Classes
- Double
-
def
toInt: Int
- Implicit
- This member is added by an implicit conversion from Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Float).toInt
- Definition Classes
- Float
-
def
toInt: Int
- Implicit
- This member is added by an implicit conversion from Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Long).toInt
- Definition Classes
- Long
-
def
toInt: Int
- Implicit
- This member is added by an implicit conversion from Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).toInt
- Definition Classes
- Int
-
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 Char to RichChar performed by method charWrapper 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:(char: RichChar).toLong
- Definition Classes
- ScalaNumericAnyConversions
-
def
toLong: Long
- Implicit
- This member is added by an implicit conversion from Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Double).toLong
- Definition Classes
- Double
-
def
toLong: Long
- Implicit
- This member is added by an implicit conversion from Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Float).toLong
- Definition Classes
- Float
-
def
toLong: Long
- Implicit
- This member is added by an implicit conversion from Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Long).toLong
- Definition Classes
- Long
-
def
toLong: Long
- Implicit
- This member is added by an implicit conversion from Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).toLong
- Definition Classes
- Int
-
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 Char to RichChar performed by method charWrapper 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:(char: RichChar).toShort
- Definition Classes
- ScalaNumericAnyConversions
-
def
toShort: Short
- Implicit
- This member is added by an implicit conversion from Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Double).toShort
- Definition Classes
- Double
-
def
toShort: Short
- Implicit
- This member is added by an implicit conversion from Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Float).toShort
- Definition Classes
- Float
-
def
toShort: Short
- Implicit
- This member is added by an implicit conversion from Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Long).toShort
- Definition Classes
- Long
-
def
toShort: Short
- Implicit
- This member is added by an implicit conversion from Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).toShort
- Definition Classes
- Int
-
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 Char to Character performed by method char2Character 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:(char: Character).toString()
- Definition Classes
- Character → 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 Char to RichChar performed by method charWrapper 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:(char: RichChar).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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).unary_+
- Definition Classes
- Int
-
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 Char to Double performed by method char2double in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Float performed by method char2float in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).unary_-
- Definition Classes
- Int
-
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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).unary_~
- Definition Classes
- Int
~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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Long performed by method char2long in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: 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 Char to Int performed by method char2int in scala.Char.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(char: Int).|(x)
- Definition Classes
- Int
(0xf0 | 0xaa) == 0xfa // in binary: 11110000 // | 10101010 // -------- // 11111010
Example:
This is the documentation for the Scala standard library.
Package structure
The scala package contains core types like
Int
,Float
,Array
orOption
which are accessible in all Scala compilation units without explicit qualification or imports.Notable packages include:
scala.collection
and its sub-packages contain Scala's collections frameworkscala.collection.immutable
- Immutable, sequential data-structures such asVector
,List
,Range
,HashMap
orHashSet
scala.collection.mutable
- Mutable, sequential data-structures such asArrayBuffer
,StringBuilder
,HashMap
orHashSet
scala.collection.concurrent
- Mutable, concurrent data-structures such asTrieMap
scala.collection.parallel.immutable
- Immutable, parallel data-structures such asParVector
,ParRange
,ParHashMap
orParHashSet
scala.collection.parallel.mutable
- Mutable, parallel data-structures such asParArray
,ParHashMap
,ParTrieMap
orParHashSet
scala.concurrent
- Primitives for concurrent programming such asFutures
andPromises
scala.io
- Input and output operationsscala.math
- Basic math functions and additional numeric types likeBigInt
andBigDecimal
scala.sys
- Interaction with other processes and the operating systemscala.util.matching
- Regular expressionsOther packages exist. See the complete list on the right.
Additional parts of the standard library are shipped as separate libraries. These include:
scala.reflect
- Scala's reflection API (scala-reflect.jar)scala.xml
- XML parsing, manipulation, and serialization (scala-xml.jar)scala.swing
- A convenient wrapper around Java's GUI framework called Swing (scala-swing.jar)scala.util.parsing
- Parser combinators, including an example implementation of a JSON parser (scala-parser-combinators.jar)Automatic imports
Identifiers in the scala package and the
scala.Predef
object are always in scope by default.Some of these identifiers are type aliases provided as shortcuts to commonly used classes. For example,
List
is an alias forscala.collection.immutable.List
.Other aliases refer to classes provided by the underlying platform. For example, on the JVM,
String
is an alias forjava.lang.String
.