You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: library/src/scala/Boolean.scala
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,7 @@ final abstract class Boolean private extends AnyVal {
114
114
115
115
objectBooleanextendsAnyValCompanion {
116
116
117
-
/**Transform a value type into a boxed reference type.
117
+
/**Transforms a value type into a boxed reference type.
118
118
*
119
119
* Runtime implementation determined by `scala.runtime.BoxesRunTime.boxToBoolean`. See [[https://github.com/scala/scala src/library/scala/runtime/BoxesRunTime.java]].
/**Transform a value type into a boxed reference type.
458
+
/**Transforms a value type into a boxed reference type.
459
459
*
460
460
* Runtime implementation determined by `scala.runtime.BoxesRunTime.boxToByte`. See [[https://github.com/scala/scala src/library/scala/runtime/BoxesRunTime.java]].
/**Transform a value type into a boxed reference type.
458
+
/**Transforms a value type into a boxed reference type.
459
459
*
460
460
* Runtime implementation determined by `scala.runtime.BoxesRunTime.boxToCharacter`. See [[https://github.com/scala/scala src/library/scala/runtime/BoxesRunTime.java]].
/** The largest finite positive number representable as a Double. */
231
231
finalvalMaxValue= java.lang.Double.MAX_VALUE
232
232
233
-
/**Transform a value type into a boxed reference type.
233
+
/**Transforms a value type into a boxed reference type.
234
234
*
235
235
* Runtime implementation determined by `scala.runtime.BoxesRunTime.boxToDouble`. See [[https://github.com/scala/scala src/library/scala/runtime/BoxesRunTime.java]].
/** The largest finite positive number representable as a Float. */
231
231
finalvalMaxValue= java.lang.Float.MAX_VALUE
232
232
233
-
/**Transform a value type into a boxed reference type.
233
+
/**Transforms a value type into a boxed reference type.
234
234
*
235
235
* Runtime implementation determined by `scala.runtime.BoxesRunTime.boxToFloat`. See [[https://github.com/scala/scala src/library/scala/runtime/BoxesRunTime.java]].
Copy file name to clipboardExpand all lines: library/src/scala/Int.scala
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -455,7 +455,7 @@ object Int extends AnyValCompanion {
455
455
/** The largest value representable as an Int. */
456
456
finalvalMaxValue= java.lang.Integer.MAX_VALUE
457
457
458
-
/**Transform a value type into a boxed reference type.
458
+
/**Transforms a value type into a boxed reference type.
459
459
*
460
460
* Runtime implementation determined by `scala.runtime.BoxesRunTime.boxToInteger`. See [[https://github.com/scala/scala src/library/scala/runtime/BoxesRunTime.java]].
461
461
*
@@ -464,7 +464,7 @@ object Int extends AnyValCompanion {
464
464
*/
465
465
defbox(x: Int): java.lang.Integer=???
466
466
467
-
/**Transform a boxed type into a value type. Note that this
467
+
/**Transforms a boxed type into a value type. Note that this
468
468
* method is not typesafe: it accepts any Object, but will throw
469
469
* an exception if the argument is not a java.lang.Integer.
Copy file name to clipboardExpand all lines: library/src/scala/Long.scala
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -452,7 +452,7 @@ object Long extends AnyValCompanion {
452
452
/** The largest value representable as a Long. */
453
453
finalvalMaxValue= java.lang.Long.MAX_VALUE
454
454
455
-
/**Transform a value type into a boxed reference type.
455
+
/**Transforms a value type into a boxed reference type.
456
456
*
457
457
* Runtime implementation determined by `scala.runtime.BoxesRunTime.boxToLong`. See [[https://github.com/scala/scala src/library/scala/runtime/BoxesRunTime.java]].
458
458
*
@@ -461,7 +461,7 @@ object Long extends AnyValCompanion {
461
461
*/
462
462
defbox(x: Long): java.lang.Long=???
463
463
464
-
/**Transform a boxed type into a value type. Note that this
464
+
/**Transforms a boxed type into a value type. Note that this
465
465
* method is not typesafe: it accepts any Object, but will throw
466
466
* an exception if the argument is not a java.lang.Long.
Copy file name to clipboardExpand all lines: library/src/scala/Short.scala
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -455,7 +455,7 @@ object Short extends AnyValCompanion {
455
455
/** The largest value representable as a Short. */
456
456
finalvalMaxValue= java.lang.Short.MAX_VALUE
457
457
458
-
/**Transform a value type into a boxed reference type.
458
+
/**Transforms a value type into a boxed reference type.
459
459
*
460
460
* Runtime implementation determined by `scala.runtime.BoxesRunTime.boxToShort`. See [[https://github.com/scala/scala src/library/scala/runtime/BoxesRunTime.java]].
461
461
*
@@ -464,7 +464,7 @@ object Short extends AnyValCompanion {
464
464
*/
465
465
defbox(x: Short): java.lang.Short=???
466
466
467
-
/**Transform a boxed type into a value type. Note that this
467
+
/**Transforms a boxed type into a value type. Note that this
468
468
* method is not typesafe: it accepts any Object, but will throw
469
469
* an exception if the argument is not a java.lang.Short.
0 commit comments