The Scala-Lang docs say:
Long, a 64-bit signed integer (equivalent to Java's long primitive type) is a subtype of scala.AnyVal. Instances of Long are not represented by an object in the underlying runtime system.
Java has a long (primitive) and Long (boxed).
Does Scala have aboxed version of this primitive?
java.lang.Longas the boxed version where necessary. Same with all other primitive types.