int
Type members
Types
Multiplication of two Int
singleton types.
Multiplication of two Int
singleton types.
val mul: 4 * 2 = 8
Integer division of two Int
singleton types.
Integer division of two Int
singleton types.
val div: 5 / 2 = 2
Less-than comparison of two Int
singleton types.
Less-than comparison of two Int
singleton types.
val lt1: 4 < 2 = false
val lt2: 2 < 4 = true
Less-or-equal comparison of two Int
singleton types.
Less-or-equal comparison of two Int
singleton types.
val lt1: 4 <= 2 = false
val lt2: 2 <= 2 = true
Greater-than comparison of two Int
singleton types.
Greater-than comparison of two Int
singleton types.
val gt1: 4 > 2 = true
val gt2: 2 > 2 = false
Greater-or-equal comparison of two Int
singleton types.
Greater-or-equal comparison of two Int
singleton types.
val ge1: 4 >= 2 = true
val ge2: 2 >= 3 = false
Binary right shift of X
by Y
, filling the left with zeros.
Binary right shift of X
by Y
, filling the left with zeros.
val rshiftzero: 10 >>> 1 = 5
Absolute value of an Int
singleton type.
Absolute value of an Int
singleton type.
val abs: Abs[-1] = 1
Bitwise and of X
and Y
.
Bitwise and of X
and Y
.
val and1: BitwiseAnd[4, 4] = 4
val and2: BitwiseAnd[10, 5] = 0
Negation of an Int
singleton type.
Negation of an Int
singleton type.
val neg1: Neg[-1] = 1
val neg2: Neg[1] = -1
Successor of a natural number where zero is the type 0 and successors are reduced as if the definition was
Successor of a natural number where zero is the type 0 and successors are reduced as if the definition was
type S[N <: Int] <: Int = N match {
case 0 => 1
case 1 => 2
case 2 => 3
...
case 2147483646 => 2147483647
}