Transform a value type into a boxed reference type.
Transform a value type into a boxed reference type.
Runtime implementation determined byscala.runtime.BoxesRunTime.boxToInteger. Seesrc/library/scala/runtime/BoxesRunTime.java.
the Int to be boxed
a java.lang.Integer offeringx as its underlying value.
Transform a boxed type into a value type.
Transform a boxed type into a value type. Note that this method is not typesafe: it accepts any Object, but will throw an exception if the argument is not a java.lang.Integer.
Runtime implementation determined byscala.runtime.BoxesRunTime.unboxToInt. Seesrc/library/scala/runtime/BoxesRunTime.java.
the java.lang.Integer to be unboxed.
the Int resulting from calling intValue() onx
ClassCastException if the argument is not a java.lang.Integer