W3cubDocs

/Scala 2.12 Library

Class scala.Int

Companion object Int

abstract final class Int extends AnyVal

Int, a 32-bit signed integer (equivalent to Java's int primitive type) is a subtype of scala.AnyVal. Instances of Int are not represented by an object in the underlying runtime system.

There is an implicit conversion from scala.Int => scala.runtime.RichInt which provides useful non-primitive operations.

Source
Int.scala
Linear Supertypes

Abstract Value Members

abstract def !=(x: Double): Boolean

abstract def !=(x: Float): Boolean

abstract def !=(x: Long): Boolean

abstract def !=(x: Int): Boolean

abstract def !=(x: Char): Boolean

abstract def !=(x: Short): Boolean

abstract def !=(x: Byte): Boolean

abstract def %(x: Double): Double

abstract def %(x: Float): Float

abstract def %(x: Long): Long

abstract def %(x: Int): Int

abstract def %(x: Char): Int

abstract def %(x: Short): Int

abstract def %(x: Byte): Int

abstract def &(x: Long): Long

Returns the bitwise AND of this value and x.

Example:
    (0xf0 & 0xaa) == 0xa0
    // in binary:   11110000
    //            & 10101010
    //              --------
    //              10100000

abstract def &(x: Int): Int

Returns the bitwise AND of this value and x.

Example:
    (0xf0 & 0xaa) == 0xa0
    // in binary:   11110000
    //            & 10101010
    //              --------
    //              10100000

abstract def &(x: Char): Int

Returns the bitwise AND of this value and x.

Example:
    (0xf0 & 0xaa) == 0xa0
    // in binary:   11110000
    //            & 10101010
    //              --------
    //              10100000

abstract def &(x: Short): Int

Returns the bitwise AND of this value and x.

Example:
    (0xf0 & 0xaa) == 0xa0
    // in binary:   11110000
    //            & 10101010
    //              --------
    //              10100000

abstract def &(x: Byte): Int

Returns the bitwise AND of this value and x.

Example:
    (0xf0 & 0xaa) == 0xa0
    // in binary:   11110000
    //            & 10101010
    //              --------
    //              10100000

abstract def *(x: Double): Double

abstract def *(x: Float): Float

abstract def *(x: Long): Long

abstract def *(x: Int): Int

abstract def *(x: Char): Int

abstract def *(x: Short): Int

abstract def *(x: Byte): Int

abstract def +(x: Double): Double

abstract def +(x: Float): Float

abstract def +(x: Long): Long

abstract def +(x: Int): Int

abstract def +(x: Char): Int

abstract def +(x: Short): Int

abstract def +(x: Byte): Int

abstract def +(x: String): String

abstract def -(x: Double): Double

abstract def -(x: Float): Float

abstract def -(x: Long): Long

abstract def -(x: Int): Int

abstract def -(x: Char): Int

abstract def -(x: Short): Int

abstract def -(x: Byte): Int

abstract def /(x: Double): Double

abstract def /(x: Float): Float

abstract def /(x: Long): Long

abstract def /(x: Int): Int

abstract def /(x: Char): Int

abstract def /(x: Short): Int

abstract def /(x: Byte): Int

abstract def <(x: Double): Boolean

abstract def <(x: Float): Boolean

abstract def <(x: Long): Boolean

abstract def <(x: Int): Boolean

abstract def <(x: Char): Boolean

abstract def <(x: Short): Boolean

abstract def <(x: Byte): Boolean

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.

Example:
    6 << 3 == 48 // in binary: 0110 << 3 == 0110000

abstract def <=(x: Double): Boolean

abstract def <=(x: Float): Boolean

abstract def <=(x: Long): Boolean

abstract def <=(x: Int): Boolean

abstract def <=(x: Char): Boolean

abstract def <=(x: Short): Boolean

abstract def <=(x: Byte): Boolean

abstract def ==(x: Double): Boolean

abstract def ==(x: Float): Boolean

abstract def ==(x: Long): Boolean

abstract def ==(x: Int): Boolean

abstract def ==(x: Char): Boolean

abstract def ==(x: Short): Boolean

abstract def ==(x: Byte): Boolean

abstract def >(x: Double): Boolean

abstract def >(x: Float): Boolean

abstract def >(x: Long): Boolean

abstract def >(x: Int): Boolean

abstract def >(x: Char): Boolean

abstract def >(x: Short): Boolean

abstract def >(x: Byte): Boolean

abstract def >=(x: Double): Boolean

abstract def >=(x: Float): Boolean

abstract def >=(x: Long): Boolean

abstract def >=(x: Int): Boolean

abstract def >=(x: Char): Boolean

abstract def >=(x: Short): Boolean

abstract def >=(x: Byte): Boolean

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. The effect of this is to retain the sign of the value.

Example:
    -21 >> 3 == -3
    // in binary: 11111111 11111111 11111111 11101011 >> 3 ==
    //            11111111 11111111 11111111 11111101

abstract def >>>(x: Int): Int

Returns this value bit-shifted right by the specified number of bits, filling the new left bits with zeroes.

Examples:
    21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
    ,
    -21 >>> 3 == 536870909
    // in binary: 11111111 11111111 11111111 11101011 >>> 3 ==
    //            00011111 11111111 11111111 11111101

abstract def ^(x: Long): Long

Returns the bitwise XOR of this value and x.

Example:
    (0xf0 ^ 0xaa) == 0x5a
    // in binary:   11110000
    //            ^ 10101010
    //              --------
    //              01011010

abstract def ^(x: Int): Int

Returns the bitwise XOR of this value and x.

Example:
    (0xf0 ^ 0xaa) == 0x5a
    // in binary:   11110000
    //            ^ 10101010
    //              --------
    //              01011010

abstract def ^(x: Char): Int

Returns the bitwise XOR of this value and x.

Example:
    (0xf0 ^ 0xaa) == 0x5a
    // in binary:   11110000
    //            ^ 10101010
    //              --------
    //              01011010

abstract def ^(x: Short): Int

Returns the bitwise XOR of this value and x.

Example:
    (0xf0 ^ 0xaa) == 0x5a
    // in binary:   11110000
    //            ^ 10101010
    //              --------
    //              01011010

abstract def ^(x: Byte): Int

Returns the bitwise XOR of this value and x.

Example:
    (0xf0 ^ 0xaa) == 0x5a
    // in binary:   11110000
    //            ^ 10101010
    //              --------
    //              01011010

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

abstract def unary_-: Int

abstract def unary_~: Int

Returns the bitwise negation of this value.

Example:
    ~5 == -6
    // in binary: ~00000101 ==
    //             11111010

abstract def |(x: Long): Long

Returns the bitwise OR of this value and x.

Example:
    (0xf0 | 0xaa) == 0xfa
    // in binary:   11110000
    //            | 10101010
    //              --------
    //              11111010

abstract def |(x: Int): Int

Returns the bitwise OR of this value and x.

Example:
    (0xf0 | 0xaa) == 0xfa
    // in binary:   11110000
    //            | 10101010
    //              --------
    //              11111010

abstract def |(x: Char): Int

Returns the bitwise OR of this value and x.

Example:
    (0xf0 | 0xaa) == 0xfa
    // in binary:   11110000
    //            | 10101010
    //              --------
    //              11111010

abstract def |(x: Short): Int

Returns the bitwise OR of this value and x.

Example:
    (0xf0 | 0xaa) == 0xfa
    // in binary:   11110000
    //            | 10101010
    //              --------
    //              11111010

abstract def |(x: Byte): Int

Returns the bitwise OR of this value and x.

Example:
    (0xf0 | 0xaa) == 0xfa
    // in binary:   11110000
    //            | 10101010
    //              --------
    //              11111010

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.

Annotations
@deprecated
Deprecated

(Since version 2.12.7) shifting a value by a Long argument is deprecated (except when the value is a Long). Call toInt on the argument to maintain the current behavior and avoid the deprecation warning.

Example:
    6 << 3 == 48 // in binary: 0110 << 3 == 0110000

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. The effect of this is to retain the sign of the value.

Annotations
@deprecated
Deprecated

(Since version 2.12.7) shifting a value by a Long argument is deprecated (except when the value is a Long). Call toInt on the argument to maintain the current behavior and avoid the deprecation warning.

Example:
    -21 >> 3 == -3
    // in binary: 11111111 11111111 11111111 11101011 >> 3 ==
    //            11111111 11111111 11111111 11111101

abstract def >>>(x: Long): Int

Returns this value bit-shifted right by the specified number of bits, filling the new left bits with zeroes.

Annotations
@deprecated
Deprecated

(Since version 2.12.7) shifting a value by a Long argument is deprecated (except when the value is a Long). Call toInt on the argument to maintain the current behavior and avoid the deprecation warning.

Examples:
    21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
    ,
    -21 >>> 3 == 536870909
    // in binary: 11111111 11111111 11111111 11101011 >>> 3 ==
    //            00011111 11111111 11111111 11111101

Concrete Value Members

final def !=(arg0: Any): Boolean

Test two objects for inequality.

returns

true if !(this == that), false otherwise.

Definition Classes
Any

final def ##(): Int

Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

returns

a hash value consistent with ==

Definition Classes
Any

def ->[B](y: B): (Int, B)

Implicit
This member is added by an implicit conversion from Int to ArrowAssoc[Int] performed by method ArrowAssoc in scala.Predef.
Definition Classes
ArrowAssoc
Annotations
@inline()

final def ==(arg0: Any): Boolean

Test two objects for equality. The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

returns

true if the receiver object is equivalent to the argument; false otherwise.

Definition Classes
Any

def abs: Int

Returns the absolute value of this.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichIntScalaNumberProxy

final def asInstanceOf[T0]: T0

Cast the receiver object to be of type T0.

Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

returns

the receiver object.

Definition Classes
Any
Exceptions thrown

ClassCastException if the receiver object is not an instance of the erasure of type T0.

def compare(y: Int): Int

Result of comparing this with operand that.

Implement this method to determine how instances of A will be sorted.

Returns x where:

    x < 0 when this < that x == 0 when this == that x > 0 when this > that
Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
OrderedProxyOrdered

def compareTo(arg0: Integer): Int

Implicit
This member is added by an implicit conversion from Int to Integer performed by method int2Integer in scala.Predef.
Definition Classes
Integer → Comparable

def compareTo(that: Int): Int

Result of comparing this with operand that.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
Ordered → Comparable

def ensuring(cond: (Int) ⇒ Boolean, msg: ⇒ Any): Int

Implicit
This member is added by an implicit conversion from Int to Ensuring[Int] performed by method Ensuring in scala.Predef.
Definition Classes
Ensuring

def ensuring(cond: (Int) ⇒ Boolean): Int

Implicit
This member is added by an implicit conversion from Int to Ensuring[Int] performed by method Ensuring in scala.Predef.
Definition Classes
Ensuring

def ensuring(cond: Boolean, msg: ⇒ Any): Int

Implicit
This member is added by an implicit conversion from Int to Ensuring[Int] performed by method Ensuring in scala.Predef.
Definition Classes
Ensuring

def ensuring(cond: Boolean): Int

Implicit
This member is added by an implicit conversion from Int to Ensuring[Int] performed by method Ensuring in scala.Predef.
Definition Classes
Ensuring

def equals(arg0: Any): Boolean

Compares the receiver object (this) with the argument object (that) for equivalence.

Any implementation of this method should be an equivalence relation:

    It is reflexive: for any instance x of type Any, x.equals(x) should return true.It is symmetric: for any instances x and y of type Any, x.equals(y) should return true if and only if y.equals(x) returns true.It is transitive: for any instances x, y, and z of type Any if x.equals(y) returns true and y.equals(z) returns true, then x.equals(z) should return true.

If you override this method, you should verify that your implementation remains an equivalence relation. Additionally, when overriding this method it is usually necessary to override hashCode to ensure that objects which are "equal" (o1.equals(o2) returns true) hash to the same scala.Int. (o1.hashCode.equals(o2.hashCode)).

returns

true if the receiver object is equivalent to the argument; false otherwise.

Definition Classes
Any

def formatted(fmtstr: String): String

Returns string formatted according to given format string. Format strings are as for String.format (@see java.lang.String.format).

Implicit
This member is added by an implicit conversion from Int to StringFormat[Int] performed by method StringFormat in scala.Predef.
Definition Classes
StringFormat
Annotations
@inline()

def getClass(): Class[Int]

Returns the runtime class representation of the object.

returns

a class object corresponding to the runtime type of the receiver.

Definition Classes
IntAnyValAny

def hashCode(): Int

Calculate a hash code value for the object.

The default hashing algorithm is platform dependent.

Note that it is allowed for two objects to have identical hash codes (o1.hashCode.equals(o2.hashCode)) yet not be equal (o1.equals(o2) returns false). A degenerate implementation could always return 0. However, it is required that if two objects are equal (o1.equals(o2) returns true) that they have identical hash codes (o1.hashCode.equals(o2.hashCode)). Therefore, when overriding this method, be sure to verify that the behavior is consistent with the equals method.

returns

the hash code value for this object.

Definition Classes
Any

final def isInstanceOf[T0]: Boolean

Test whether the dynamic type of the receiver object is T0.

Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

returns

true if the receiver object is an instance of erasure of type T0; false otherwise.

Definition Classes
Any

def isValidByte: Boolean

Returns true iff this has a zero fractional part, and is within the range of scala.Byte MinValue and MaxValue; otherwise returns false.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper 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 returns false.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
ScalaNumericAnyConversions

def isValidInt: Boolean

Returns true iff this has a zero fractional part, and is within the range of scala.Int MinValue and MaxValue; otherwise returns false.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichIntScalaNumericAnyConversions

def isValidLong: Boolean

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichInt

def isValidShort: Boolean

Returns true iff this has a zero fractional part, and is within the range of scala.Short MinValue and MaxValue; otherwise returns false.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
ScalaNumericAnyConversions

def isWhole(): Boolean

Returns true if this number has no decimal component. Always true for RichInt.

returns

true if this number has no decimal component, false otherwise.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichIntScalaNumericAnyConversions

def max(that: Int): Int

Returns this if this > that or that otherwise.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichIntScalaNumberProxy

def min(that: Int): Int

Returns this if this < that or that otherwise.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichIntScalaNumberProxy

val self: Int

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichIntTypedProxy

def signum: Int

Returns the signum of this.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichIntScalaNumberProxy

def to(end: Int, step: Int): Inclusive

end

The final bound of the range to make.

step

The number to increase by for each step of the range.

returns

A scala.collection.immutable.Range from this up to and including end.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichIntRangedProxy

def to(end: Int): Inclusive

end

The final bound of the range to make.

returns

A scala.collection.immutable.Range from this up to and including end.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichIntRangedProxy

def toBinaryString: String

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichInt

def toHexString: String

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichInt

def toOctalString: String

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichInt

def toString(): String

Returns a string representation of the object.

The default representation is platform dependent.

returns

a string representation of the object.

Definition Classes
Any

def underlying(): AnyRef

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
ScalaNumberProxyScalaNumericAnyConversions

def until(end: Int, step: Int): collection.immutable.Range

end

The final bound of the range to make.

step

The number to increase by for each step of the range.

returns

A scala.collection.immutable.Range from this up to but not including end.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichIntRangedProxy

def until(end: Int): collection.immutable.Range

end

The final bound of the range to make.

returns

A scala.collection.immutable.Range from this up to but not including end.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Definition Classes
RichIntRangedProxy

def [B](y: B): (Int, B)

Implicit
This member is added by an implicit conversion from Int to ArrowAssoc[Int] performed by method ArrowAssoc in scala.Predef.
Definition Classes
ArrowAssoc

Shadowed Implicit Value Members

def !=(x: Double): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).!=(x)
Definition Classes
Double

def !=(x: Float): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).!=(x)
Definition Classes
Double

def !=(x: Long): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).!=(x)
Definition Classes
Double

def !=(x: Int): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).!=(x)
Definition Classes
Double

def !=(x: Char): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).!=(x)
Definition Classes
Double

def !=(x: Short): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).!=(x)
Definition Classes
Double

def !=(x: Byte): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).!=(x)
Definition Classes
Double

def !=(x: Double): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).!=(x)
Definition Classes
Float

def !=(x: Float): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).!=(x)
Definition Classes
Float

def !=(x: Long): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).!=(x)
Definition Classes
Float

def !=(x: Int): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).!=(x)
Definition Classes
Float

def !=(x: Char): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).!=(x)
Definition Classes
Float

def !=(x: Short): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).!=(x)
Definition Classes
Float

def !=(x: Byte): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).!=(x)
Definition Classes
Float

def !=(x: Double): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).!=(x)
Definition Classes
Long

def !=(x: Float): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).!=(x)
Definition Classes
Long

def !=(x: Long): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).!=(x)
Definition Classes
Long

def !=(x: Int): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).!=(x)
Definition Classes
Long

def !=(x: Char): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).!=(x)
Definition Classes
Long

def !=(x: Short): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).!=(x)
Definition Classes
Long

def !=(x: Byte): Boolean

Returns true if this value is not equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).!=(x)
Definition Classes
Long

def %(x: Double): Double

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).%(x)
Definition Classes
Double

def %(x: Float): Double

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).%(x)
Definition Classes
Double

def %(x: Long): Double

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).%(x)
Definition Classes
Double

def %(x: Int): Double

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).%(x)
Definition Classes
Double

def %(x: Char): Double

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).%(x)
Definition Classes
Double

def %(x: Short): Double

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).%(x)
Definition Classes
Double

def %(x: Byte): Double

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).%(x)
Definition Classes
Double

def %(x: Double): Double

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).%(x)
Definition Classes
Float

def %(x: Float): Float

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).%(x)
Definition Classes
Float

def %(x: Long): Float

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).%(x)
Definition Classes
Float

def %(x: Int): Float

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).%(x)
Definition Classes
Float

def %(x: Char): Float

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).%(x)
Definition Classes
Float

def %(x: Short): Float

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).%(x)
Definition Classes
Float

def %(x: Byte): Float

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).%(x)
Definition Classes
Float

def %(x: Double): Double

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).%(x)
Definition Classes
Long

def %(x: Float): Float

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).%(x)
Definition Classes
Long

def %(x: Long): Long

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).%(x)
Definition Classes
Long

def %(x: Int): Long

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).%(x)
Definition Classes
Long

def %(x: Char): Long

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).%(x)
Definition Classes
Long

def %(x: Short): Long

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).%(x)
Definition Classes
Long

def %(x: Byte): Long

Returns the remainder of the division of this value by x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).%(x)
Definition Classes
Long

def &(x: Long): Long

Returns the bitwise AND of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).&(x)
Definition Classes
Long
Example:
    (0xf0 & 0xaa) == 0xa0
    // in binary:   11110000
    //            & 10101010
    //              --------
    //              10100000

def &(x: Int): Long

Returns the bitwise AND of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).&(x)
Definition Classes
Long
Example:
    (0xf0 & 0xaa) == 0xa0
    // in binary:   11110000
    //            & 10101010
    //              --------
    //              10100000

def &(x: Char): Long

Returns the bitwise AND of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).&(x)
Definition Classes
Long
Example:
    (0xf0 & 0xaa) == 0xa0
    // in binary:   11110000
    //            & 10101010
    //              --------
    //              10100000

def &(x: Short): Long

Returns the bitwise AND of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).&(x)
Definition Classes
Long
Example:
    (0xf0 & 0xaa) == 0xa0
    // in binary:   11110000
    //            & 10101010
    //              --------
    //              10100000

def &(x: Byte): Long

Returns the bitwise AND of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).&(x)
Definition Classes
Long
Example:
    (0xf0 & 0xaa) == 0xa0
    // in binary:   11110000
    //            & 10101010
    //              --------
    //              10100000

def *(x: Double): Double

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).*(x)
Definition Classes
Double

def *(x: Float): Double

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).*(x)
Definition Classes
Double

def *(x: Long): Double

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).*(x)
Definition Classes
Double

def *(x: Int): Double

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).*(x)
Definition Classes
Double

def *(x: Char): Double

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).*(x)
Definition Classes
Double

def *(x: Short): Double

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).*(x)
Definition Classes
Double

def *(x: Byte): Double

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).*(x)
Definition Classes
Double

def *(x: Double): Double

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).*(x)
Definition Classes
Float

def *(x: Float): Float

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).*(x)
Definition Classes
Float

def *(x: Long): Float

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).*(x)
Definition Classes
Float

def *(x: Int): Float

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).*(x)
Definition Classes
Float

def *(x: Char): Float

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).*(x)
Definition Classes
Float

def *(x: Short): Float

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).*(x)
Definition Classes
Float

def *(x: Byte): Float

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).*(x)
Definition Classes
Float

def *(x: Double): Double

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).*(x)
Definition Classes
Long

def *(x: Float): Float

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).*(x)
Definition Classes
Long

def *(x: Long): Long

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).*(x)
Definition Classes
Long

def *(x: Int): Long

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).*(x)
Definition Classes
Long

def *(x: Char): Long

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).*(x)
Definition Classes
Long

def *(x: Short): Long

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).*(x)
Definition Classes
Long

def *(x: Byte): Long

Returns the product of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).*(x)
Definition Classes
Long

def +(x: Double): Double

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).+(x)
Definition Classes
Double

def +(x: Float): Double

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).+(x)
Definition Classes
Double

def +(x: Long): Double

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).+(x)
Definition Classes
Double

def +(x: Int): Double

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).+(x)
Definition Classes
Double

def +(x: Char): Double

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).+(x)
Definition Classes
Double

def +(x: Short): Double

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).+(x)
Definition Classes
Double

def +(x: Byte): Double

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).+(x)
Definition Classes
Double

def +(x: String): String

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).+(x)
Definition Classes
Double

def +(x: Double): Double

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).+(x)
Definition Classes
Float

def +(x: Float): Float

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).+(x)
Definition Classes
Float

def +(x: Long): Float

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).+(x)
Definition Classes
Float

def +(x: Int): Float

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).+(x)
Definition Classes
Float

def +(x: Char): Float

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).+(x)
Definition Classes
Float

def +(x: Short): Float

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).+(x)
Definition Classes
Float

def +(x: Byte): Float

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).+(x)
Definition Classes
Float

def +(x: String): String

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).+(x)
Definition Classes
Float

def +(x: Double): Double

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).+(x)
Definition Classes
Long

def +(x: Float): Float

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).+(x)
Definition Classes
Long

def +(x: Long): Long

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).+(x)
Definition Classes
Long

def +(x: Int): Long

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).+(x)
Definition Classes
Long

def +(x: Char): Long

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).+(x)
Definition Classes
Long

def +(x: Short): Long

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).+(x)
Definition Classes
Long

def +(x: Byte): Long

Returns the sum of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).+(x)
Definition Classes
Long

def +(x: String): String

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).+(x)
Definition Classes
Long

def +(other: String): String

Implicit
This member is added by an implicit conversion from Int to any2stringadd[Int] performed by method any2stringadd in scala.Predef.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: any2stringadd[Int]).+(other)
Definition Classes
any2stringadd

def -(x: Double): Double

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).-(x)
Definition Classes
Double

def -(x: Float): Double

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).-(x)
Definition Classes
Double

def -(x: Long): Double

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).-(x)
Definition Classes
Double

def -(x: Int): Double

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).-(x)
Definition Classes
Double

def -(x: Char): Double

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).-(x)
Definition Classes
Double

def -(x: Short): Double

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).-(x)
Definition Classes
Double

def -(x: Byte): Double

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).-(x)
Definition Classes
Double

def -(x: Double): Double

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).-(x)
Definition Classes
Float

def -(x: Float): Float

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).-(x)
Definition Classes
Float

def -(x: Long): Float

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).-(x)
Definition Classes
Float

def -(x: Int): Float

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).-(x)
Definition Classes
Float

def -(x: Char): Float

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).-(x)
Definition Classes
Float

def -(x: Short): Float

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).-(x)
Definition Classes
Float

def -(x: Byte): Float

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).-(x)
Definition Classes
Float

def -(x: Double): Double

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).-(x)
Definition Classes
Long

def -(x: Float): Float

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).-(x)
Definition Classes
Long

def -(x: Long): Long

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).-(x)
Definition Classes
Long

def -(x: Int): Long

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).-(x)
Definition Classes
Long

def -(x: Char): Long

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).-(x)
Definition Classes
Long

def -(x: Short): Long

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).-(x)
Definition Classes
Long

def -(x: Byte): Long

Returns the difference of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).-(x)
Definition Classes
Long

def /(x: Double): Double

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double)./(x)
Definition Classes
Double

def /(x: Float): Double

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double)./(x)
Definition Classes
Double

def /(x: Long): Double

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double)./(x)
Definition Classes
Double

def /(x: Int): Double

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double)./(x)
Definition Classes
Double

def /(x: Char): Double

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double)./(x)
Definition Classes
Double

def /(x: Short): Double

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double)./(x)
Definition Classes
Double

def /(x: Byte): Double

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double)./(x)
Definition Classes
Double

def /(x: Double): Double

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float)./(x)
Definition Classes
Float

def /(x: Float): Float

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float)./(x)
Definition Classes
Float

def /(x: Long): Float

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float)./(x)
Definition Classes
Float

def /(x: Int): Float

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float)./(x)
Definition Classes
Float

def /(x: Char): Float

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float)./(x)
Definition Classes
Float

def /(x: Short): Float

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float)./(x)
Definition Classes
Float

def /(x: Byte): Float

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float)./(x)
Definition Classes
Float

def /(x: Double): Double

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long)./(x)
Definition Classes
Long

def /(x: Float): Float

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long)./(x)
Definition Classes
Long

def /(x: Long): Long

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long)./(x)
Definition Classes
Long

def /(x: Int): Long

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long)./(x)
Definition Classes
Long

def /(x: Char): Long

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long)./(x)
Definition Classes
Long

def /(x: Short): Long

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long)./(x)
Definition Classes
Long

def /(x: Byte): Long

Returns the quotient of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long)./(x)
Definition Classes
Long

def <(that: Int): Boolean

Returns true if this is less than that

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper 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:
(int: RichInt).<(that)
Definition Classes
Ordered

def <(x: Double): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<(x)
Definition Classes
Double

def <(x: Float): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<(x)
Definition Classes
Double

def <(x: Long): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<(x)
Definition Classes
Double

def <(x: Int): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<(x)
Definition Classes
Double

def <(x: Char): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<(x)
Definition Classes
Double

def <(x: Short): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<(x)
Definition Classes
Double

def <(x: Byte): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<(x)
Definition Classes
Double

def <(x: Double): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<(x)
Definition Classes
Float

def <(x: Float): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<(x)
Definition Classes
Float

def <(x: Long): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<(x)
Definition Classes
Float

def <(x: Int): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<(x)
Definition Classes
Float

def <(x: Char): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<(x)
Definition Classes
Float

def <(x: Short): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<(x)
Definition Classes
Float

def <(x: Byte): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<(x)
Definition Classes
Float

def <(x: Double): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<(x)
Definition Classes
Long

def <(x: Float): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<(x)
Definition Classes
Long

def <(x: Long): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<(x)
Definition Classes
Long

def <(x: Int): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<(x)
Definition Classes
Long

def <(x: Char): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<(x)
Definition Classes
Long

def <(x: Short): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<(x)
Definition Classes
Long

def <(x: Byte): Boolean

Returns true if this value is less than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<(x)
Definition Classes
Long

def <<(x: Long): Long

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 Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<<(x)
Definition Classes
Long
Example:
    6 << 3 == 48 // in binary: 0110 << 3 == 0110000

def <<(x: Int): Long

Returns this value bit-shifted left by the specified number of bits, filling in the new right bits with zeroes.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<<(x)
Definition Classes
Long
Example:
    6 << 3 == 48 // in binary: 0110 << 3 == 0110000

def <=(that: Int): Boolean

Returns true if this is less than or equal to that.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper 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:
(int: RichInt).<=(that)
Definition Classes
Ordered

def <=(x: Double): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<=(x)
Definition Classes
Double

def <=(x: Float): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<=(x)
Definition Classes
Double

def <=(x: Long): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<=(x)
Definition Classes
Double

def <=(x: Int): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<=(x)
Definition Classes
Double

def <=(x: Char): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<=(x)
Definition Classes
Double

def <=(x: Short): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<=(x)
Definition Classes
Double

def <=(x: Byte): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).<=(x)
Definition Classes
Double

def <=(x: Double): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<=(x)
Definition Classes
Float

def <=(x: Float): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<=(x)
Definition Classes
Float

def <=(x: Long): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<=(x)
Definition Classes
Float

def <=(x: Int): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<=(x)
Definition Classes
Float

def <=(x: Char): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<=(x)
Definition Classes
Float

def <=(x: Short): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<=(x)
Definition Classes
Float

def <=(x: Byte): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).<=(x)
Definition Classes
Float

def <=(x: Double): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<=(x)
Definition Classes
Long

def <=(x: Float): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<=(x)
Definition Classes
Long

def <=(x: Long): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<=(x)
Definition Classes
Long

def <=(x: Int): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<=(x)
Definition Classes
Long

def <=(x: Char): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<=(x)
Definition Classes
Long

def <=(x: Short): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<=(x)
Definition Classes
Long

def <=(x: Byte): Boolean

Returns true if this value is less than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).<=(x)
Definition Classes
Long

def ==(x: Double): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).==(x)
Definition Classes
Double

def ==(x: Float): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).==(x)
Definition Classes
Double

def ==(x: Long): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).==(x)
Definition Classes
Double

def ==(x: Int): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).==(x)
Definition Classes
Double

def ==(x: Char): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).==(x)
Definition Classes
Double

def ==(x: Short): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).==(x)
Definition Classes
Double

def ==(x: Byte): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).==(x)
Definition Classes
Double

def ==(x: Double): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).==(x)
Definition Classes
Float

def ==(x: Float): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).==(x)
Definition Classes
Float

def ==(x: Long): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).==(x)
Definition Classes
Float

def ==(x: Int): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).==(x)
Definition Classes
Float

def ==(x: Char): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).==(x)
Definition Classes
Float

def ==(x: Short): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).==(x)
Definition Classes
Float

def ==(x: Byte): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).==(x)
Definition Classes
Float

def ==(x: Double): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).==(x)
Definition Classes
Long

def ==(x: Float): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).==(x)
Definition Classes
Long

def ==(x: Long): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).==(x)
Definition Classes
Long

def ==(x: Int): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).==(x)
Definition Classes
Long

def ==(x: Char): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).==(x)
Definition Classes
Long

def ==(x: Short): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).==(x)
Definition Classes
Long

def ==(x: Byte): Boolean

Returns true if this value is equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).==(x)
Definition Classes
Long

def >(that: Int): Boolean

Returns true if this is greater than that.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper 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:
(int: RichInt).>(that)
Definition Classes
Ordered

def >(x: Double): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>(x)
Definition Classes
Double

def >(x: Float): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>(x)
Definition Classes
Double

def >(x: Long): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>(x)
Definition Classes
Double

def >(x: Int): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>(x)
Definition Classes
Double

def >(x: Char): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>(x)
Definition Classes
Double

def >(x: Short): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>(x)
Definition Classes
Double

def >(x: Byte): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>(x)
Definition Classes
Double

def >(x: Double): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>(x)
Definition Classes
Float

def >(x: Float): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>(x)
Definition Classes
Float

def >(x: Long): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>(x)
Definition Classes
Float

def >(x: Int): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>(x)
Definition Classes
Float

def >(x: Char): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>(x)
Definition Classes
Float

def >(x: Short): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>(x)
Definition Classes
Float

def >(x: Byte): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>(x)
Definition Classes
Float

def >(x: Double): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>(x)
Definition Classes
Long

def >(x: Float): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>(x)
Definition Classes
Long

def >(x: Long): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>(x)
Definition Classes
Long

def >(x: Int): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>(x)
Definition Classes
Long

def >(x: Char): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>(x)
Definition Classes
Long

def >(x: Short): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>(x)
Definition Classes
Long

def >(x: Byte): Boolean

Returns true if this value is greater than x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>(x)
Definition Classes
Long

def >=(that: Int): Boolean

Returns true if this is greater than or equal to that.

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper 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:
(int: RichInt).>=(that)
Definition Classes
Ordered

def >=(x: Double): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>=(x)
Definition Classes
Double

def >=(x: Float): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>=(x)
Definition Classes
Double

def >=(x: Long): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>=(x)
Definition Classes
Double

def >=(x: Int): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>=(x)
Definition Classes
Double

def >=(x: Char): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>=(x)
Definition Classes
Double

def >=(x: Short): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>=(x)
Definition Classes
Double

def >=(x: Byte): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).>=(x)
Definition Classes
Double

def >=(x: Double): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>=(x)
Definition Classes
Float

def >=(x: Float): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>=(x)
Definition Classes
Float

def >=(x: Long): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>=(x)
Definition Classes
Float

def >=(x: Int): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>=(x)
Definition Classes
Float

def >=(x: Char): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>=(x)
Definition Classes
Float

def >=(x: Short): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>=(x)
Definition Classes
Float

def >=(x: Byte): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).>=(x)
Definition Classes
Float

def >=(x: Double): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>=(x)
Definition Classes
Long

def >=(x: Float): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>=(x)
Definition Classes
Long

def >=(x: Long): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>=(x)
Definition Classes
Long

def >=(x: Int): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>=(x)
Definition Classes
Long

def >=(x: Char): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>=(x)
Definition Classes
Long

def >=(x: Short): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>=(x)
Definition Classes
Long

def >=(x: Byte): Boolean

Returns true if this value is greater than or equal to x, false otherwise.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>=(x)
Definition Classes
Long

def >>(x: Long): Long

Returns this value bit-shifted right by the specified number of bits, filling in the left bits with the same value as the left-most bit of this. The effect of this is to retain the sign of the value.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>>(x)
Definition Classes
Long
Example:
    -21 >> 3 == -3
    // in binary: 11111111 11111111 11111111 11101011 >> 3 ==
    //            11111111 11111111 11111111 11111101

def >>(x: Int): Long

Returns this value bit-shifted right by the specified number of bits, filling in the left bits with the same value as the left-most bit of this. The effect of this is to retain the sign of the value.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>>(x)
Definition Classes
Long
Example:
    -21 >> 3 == -3
    // in binary: 11111111 11111111 11111111 11101011 >> 3 ==
    //            11111111 11111111 11111111 11111101

def >>>(x: Long): Long

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 Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>>>(x)
Definition Classes
Long
Examples:
    21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
    ,
    -21 >>> 3 == 536870909
    // in binary: 11111111 11111111 11111111 11101011 >>> 3 ==
    //            00011111 11111111 11111111 11111101

def >>>(x: Int): Long

Returns this value bit-shifted right by the specified number of bits, filling the new left bits with zeroes.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).>>>(x)
Definition Classes
Long
Examples:
    21 >>> 3 == 2 // in binary: 010101 >>> 3 == 010
    ,
    -21 >>> 3 == 536870909
    // in binary: 11111111 11111111 11111111 11101011 >>> 3 ==
    //            00011111 11111111 11111111 11111101

def ^(x: Long): Long

Returns the bitwise XOR of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).^(x)
Definition Classes
Long
Example:
    (0xf0 ^ 0xaa) == 0x5a
    // in binary:   11110000
    //            ^ 10101010
    //              --------
    //              01011010

def ^(x: Int): Long

Returns the bitwise XOR of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).^(x)
Definition Classes
Long
Example:
    (0xf0 ^ 0xaa) == 0x5a
    // in binary:   11110000
    //            ^ 10101010
    //              --------
    //              01011010

def ^(x: Char): Long

Returns the bitwise XOR of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).^(x)
Definition Classes
Long
Example:
    (0xf0 ^ 0xaa) == 0x5a
    // in binary:   11110000
    //            ^ 10101010
    //              --------
    //              01011010

def ^(x: Short): Long

Returns the bitwise XOR of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).^(x)
Definition Classes
Long
Example:
    (0xf0 ^ 0xaa) == 0x5a
    // in binary:   11110000
    //            ^ 10101010
    //              --------
    //              01011010

def ^(x: Byte): Long

Returns the bitwise XOR of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).^(x)
Definition Classes
Long
Example:
    (0xf0 ^ 0xaa) == 0x5a
    // in binary:   11110000
    //            ^ 10101010
    //              --------
    //              01011010

def byteValue(): Byte

Implicit
This member is added by an implicit conversion from Int to Integer performed by method int2Integer in scala.Predef.
Shadowing
This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:
(int: Integer).byteValue()
Definition Classes
Integer → Number

def byteValue(): Byte

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Shadowing
This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:
(int: RichInt).byteValue()
Definition Classes
RichIntScalaNumberProxyScalaNumericAnyConversions

def doubleValue(): Double

Implicit
This member is added by an implicit conversion from Int to Integer performed by method int2Integer in scala.Predef.
Shadowing
This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:
(int: Integer).doubleValue()
Definition Classes
Integer → Number

def doubleValue(): Double

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Shadowing
This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:
(int: RichInt).doubleValue()
Definition Classes
RichIntScalaNumberProxyScalaNumericAnyConversions

def equals(arg0: Any): Boolean

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 Int to Integer performed by method int2Integer 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:
(int: Integer).equals(arg0)
Definition Classes
Integer → AnyRef → Any

def floatValue(): Float

Implicit
This member is added by an implicit conversion from Int to Integer performed by method int2Integer in scala.Predef.
Shadowing
This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:
(int: Integer).floatValue()
Definition Classes
Integer → Number

def floatValue(): Float

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Shadowing
This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:
(int: RichInt).floatValue()
Definition Classes
RichIntScalaNumberProxyScalaNumericAnyConversions

def hashCode(): Int

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 Int to Integer performed by method int2Integer 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:
(int: Integer).hashCode()
Definition Classes
Integer → AnyRef → Any

def intValue(): Int

Implicit
This member is added by an implicit conversion from Int to Integer performed by method int2Integer in scala.Predef.
Shadowing
This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:
(int: Integer).intValue()
Definition Classes
Integer → Number

def intValue(): Int

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Shadowing
This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:
(int: RichInt).intValue()
Definition Classes
RichIntScalaNumberProxyScalaNumericAnyConversions

def longValue(): Long

Implicit
This member is added by an implicit conversion from Int to Integer performed by method int2Integer in scala.Predef.
Shadowing
This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:
(int: Integer).longValue()
Definition Classes
Integer → Number

def longValue(): Long

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Shadowing
This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:
(int: RichInt).longValue()
Definition Classes
RichIntScalaNumberProxyScalaNumericAnyConversions

def shortValue(): Short

Implicit
This member is added by an implicit conversion from Int to Integer performed by method int2Integer in scala.Predef.
Shadowing
This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:
(int: Integer).shortValue()
Definition Classes
Integer → Number

def shortValue(): Short

Implicit
This member is added by an implicit conversion from Int to RichInt performed by method intWrapper in scala.LowPriorityImplicits.
Shadowing
This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
To access this member you can use a type ascription:
(int: RichInt).shortValue()
Definition Classes
RichIntScalaNumberProxyScalaNumericAnyConversions

def toByte: 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 Int to RichInt performed by method intWrapper 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:
(int: RichInt).toByte
Definition Classes
ScalaNumericAnyConversions

def toByte: Byte

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).toByte
Definition Classes
Double

def toByte: Byte

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).toByte
Definition Classes
Float

def toByte: Byte

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).toByte
Definition Classes
Long

def toChar: 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 Int to RichInt performed by method intWrapper 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:
(int: RichInt).toChar
Definition Classes
ScalaNumericAnyConversions

def toChar: Char

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).toChar
Definition Classes
Double

def toChar: Char

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).toChar
Definition Classes
Float

def toChar: Char

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).toChar
Definition Classes
Long

def toDouble: 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 Int to RichInt performed by method intWrapper 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:
(int: RichInt).toDouble
Definition Classes
ScalaNumericAnyConversions

def toDouble: Double

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).toDouble
Definition Classes
Double

def toDouble: Double

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).toDouble
Definition Classes
Float

def toDouble: Double

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).toDouble
Definition Classes
Long

def toFloat: 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 Int to RichInt performed by method intWrapper 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:
(int: RichInt).toFloat
Definition Classes
ScalaNumericAnyConversions

def toFloat: Float

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).toFloat
Definition Classes
Double

def toFloat: Float

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).toFloat
Definition Classes
Float

def toFloat: Float

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).toFloat
Definition Classes
Long

def toInt: 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 Int to RichInt performed by method intWrapper 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:
(int: RichInt).toInt
Definition Classes
ScalaNumericAnyConversions

def toInt: Int

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).toInt
Definition Classes
Double

def toInt: Int

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).toInt
Definition Classes
Float

def toInt: Int

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).toInt
Definition Classes
Long

def toLong: 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 Int to RichInt performed by method intWrapper 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:
(int: RichInt).toLong
Definition Classes
ScalaNumericAnyConversions

def toLong: Long

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).toLong
Definition Classes
Double

def toLong: Long

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).toLong
Definition Classes
Float

def toLong: Long

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).toLong
Definition Classes
Long

def toShort: 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 Int to RichInt performed by method intWrapper 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:
(int: RichInt).toShort
Definition Classes
ScalaNumericAnyConversions

def toShort: Short

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).toShort
Definition Classes
Double

def toShort: Short

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).toShort
Definition Classes
Float

def toShort: Short

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).toShort
Definition Classes
Long

def toString(): String

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 Int to Integer performed by method int2Integer 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:
(int: Integer).toString()
Definition Classes
Integer → AnyRef → Any

def toString(): String

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 Int to RichInt performed by method intWrapper 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:
(int: RichInt).toString()
Definition Classes
ProxyAny

def unary_+: Double

Returns this value, unmodified.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).unary_+
Definition Classes
Double

def unary_+: Float

Returns this value, unmodified.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).unary_+
Definition Classes
Float

def unary_+: Long

Returns this value, unmodified.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).unary_+
Definition Classes
Long

def unary_-: Double

Returns the negation of this value.

Implicit
This member is added by an implicit conversion from Int to Double performed by method int2double in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Double).unary_-
Definition Classes
Double

def unary_-: Float

Returns the negation of this value.

Implicit
This member is added by an implicit conversion from Int to Float performed by method int2float in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Float).unary_-
Definition Classes
Float

def unary_-: Long

Returns the negation of this value.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).unary_-
Definition Classes
Long

def unary_~: Long

Returns the bitwise negation of this value.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).unary_~
Definition Classes
Long
Example:
    ~5 == -6
    // in binary: ~00000101 ==
    //             11111010

def |(x: Long): Long

Returns the bitwise OR of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).|(x)
Definition Classes
Long
Example:
    (0xf0 | 0xaa) == 0xfa
    // in binary:   11110000
    //            | 10101010
    //              --------
    //              11111010

def |(x: Int): Long

Returns the bitwise OR of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).|(x)
Definition Classes
Long
Example:
    (0xf0 | 0xaa) == 0xfa
    // in binary:   11110000
    //            | 10101010
    //              --------
    //              11111010

def |(x: Char): Long

Returns the bitwise OR of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).|(x)
Definition Classes
Long
Example:
    (0xf0 | 0xaa) == 0xfa
    // in binary:   11110000
    //            | 10101010
    //              --------
    //              11111010

def |(x: Short): Long

Returns the bitwise OR of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).|(x)
Definition Classes
Long
Example:
    (0xf0 | 0xaa) == 0xfa
    // in binary:   11110000
    //            | 10101010
    //              --------
    //              11111010

def |(x: Byte): Long

Returns the bitwise OR of this value and x.

Implicit
This member is added by an implicit conversion from Int to Long performed by method int2long in scala.Int.
Shadowing
This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:
(int: Long).|(x)
Definition Classes
Long
Example:
    (0xf0 | 0xaa) == 0xfa
    // in binary:   11110000
    //            | 10101010
    //              --------
    //              11111010

© 2002-2019 EPFL, with contributions from Lightbend.
Licensed under the Apache License, Version 2.0.
https://www.scala-lang.org/api/2.12.9/scala/Int.html