File tree Expand file tree Collapse file tree 5 files changed +20
-20
lines changed Expand file tree Collapse file tree 5 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -79,8 +79,8 @@ final abstract class Byte private extends AnyVal {
79
79
*/
80
80
def >>> (x : Long ): Int
81
81
/**
82
- * Returns this value bit-shifted left by the specified number of bits,
83
- * filling in the right bits with the same value as the left-most bit of this.
82
+ * Returns this value bit-shifted right by the specified number of bits,
83
+ * filling in the left bits with the same value as the left-most bit of this.
84
84
* The effect of this is to retain the sign of the value.
85
85
* @example {{{
86
86
* -21 >> 3 == -3
@@ -90,8 +90,8 @@ final abstract class Byte private extends AnyVal {
90
90
*/
91
91
def >> (x : Int ): Int
92
92
/**
93
- * Returns this value bit-shifted left by the specified number of bits,
94
- * filling in the right bits with the same value as the left-most bit of this.
93
+ * Returns this value bit-shifted right by the specified number of bits,
94
+ * filling in the left bits with the same value as the left-most bit of this.
95
95
* The effect of this is to retain the sign of the value.
96
96
* @example {{{
97
97
* -21 >> 3 == -3
Original file line number Diff line number Diff line change @@ -79,8 +79,8 @@ final abstract class Char private extends AnyVal {
79
79
*/
80
80
def >>> (x : Long ): Int
81
81
/**
82
- * Returns this value bit-shifted left by the specified number of bits,
83
- * filling in the right bits with the same value as the left-most bit of this.
82
+ * Returns this value bit-shifted right by the specified number of bits,
83
+ * filling in the left bits with the same value as the left-most bit of this.
84
84
* The effect of this is to retain the sign of the value.
85
85
* @example {{{
86
86
* -21 >> 3 == -3
@@ -90,8 +90,8 @@ final abstract class Char private extends AnyVal {
90
90
*/
91
91
def >> (x : Int ): Int
92
92
/**
93
- * Returns this value bit-shifted left by the specified number of bits,
94
- * filling in the right bits with the same value as the left-most bit of this.
93
+ * Returns this value bit-shifted right by the specified number of bits,
94
+ * filling in the left bits with the same value as the left-most bit of this.
95
95
* The effect of this is to retain the sign of the value.
96
96
* @example {{{
97
97
* -21 >> 3 == -3
Original file line number Diff line number Diff line change @@ -79,8 +79,8 @@ final abstract class Int private extends AnyVal {
79
79
*/
80
80
def >>> (x : Long ): Int
81
81
/**
82
- * Returns this value bit-shifted left by the specified number of bits,
83
- * filling in the right bits with the same value as the left-most bit of this.
82
+ * Returns this value bit-shifted right by the specified number of bits,
83
+ * filling in the left bits with the same value as the left-most bit of this.
84
84
* The effect of this is to retain the sign of the value.
85
85
* @example {{{
86
86
* -21 >> 3 == -3
@@ -90,8 +90,8 @@ final abstract class Int private extends AnyVal {
90
90
*/
91
91
def >> (x : Int ): Int
92
92
/**
93
- * Returns this value bit-shifted left by the specified number of bits,
94
- * filling in the right bits with the same value as the left-most bit of this.
93
+ * Returns this value bit-shifted right by the specified number of bits,
94
+ * filling in the left bits with the same value as the left-most bit of this.
95
95
* The effect of this is to retain the sign of the value.
96
96
* @example {{{
97
97
* -21 >> 3 == -3
Original file line number Diff line number Diff line change @@ -79,8 +79,8 @@ final abstract class Long private extends AnyVal {
79
79
*/
80
80
def >>> (x : Long ): Long
81
81
/**
82
- * Returns this value bit-shifted left by the specified number of bits,
83
- * filling in the right bits with the same value as the left-most bit of this.
82
+ * Returns this value bit-shifted right by the specified number of bits,
83
+ * filling in the left bits with the same value as the left-most bit of this.
84
84
* The effect of this is to retain the sign of the value.
85
85
* @example {{{
86
86
* -21 >> 3 == -3
@@ -90,8 +90,8 @@ final abstract class Long private extends AnyVal {
90
90
*/
91
91
def >> (x : Int ): Long
92
92
/**
93
- * Returns this value bit-shifted left by the specified number of bits,
94
- * filling in the right bits with the same value as the left-most bit of this.
93
+ * Returns this value bit-shifted right by the specified number of bits,
94
+ * filling in the left bits with the same value as the left-most bit of this.
95
95
* The effect of this is to retain the sign of the value.
96
96
* @example {{{
97
97
* -21 >> 3 == -3
Original file line number Diff line number Diff line change @@ -79,8 +79,8 @@ final abstract class Short private extends AnyVal {
79
79
*/
80
80
def >>> (x : Long ): Int
81
81
/**
82
- * Returns this value bit-shifted left by the specified number of bits,
83
- * filling in the right bits with the same value as the left-most bit of this.
82
+ * Returns this value bit-shifted right by the specified number of bits,
83
+ * filling in the left bits with the same value as the left-most bit of this.
84
84
* The effect of this is to retain the sign of the value.
85
85
* @example {{{
86
86
* -21 >> 3 == -3
@@ -90,8 +90,8 @@ final abstract class Short private extends AnyVal {
90
90
*/
91
91
def >> (x : Int ): Int
92
92
/**
93
- * Returns this value bit-shifted left by the specified number of bits,
94
- * filling in the right bits with the same value as the left-most bit of this.
93
+ * Returns this value bit-shifted right by the specified number of bits,
94
+ * filling in the left bits with the same value as the left-most bit of this.
95
95
* The effect of this is to retain the sign of the value.
96
96
* @example {{{
97
97
* -21 >> 3 == -3
You can’t perform that action at this time.
0 commit comments