trait
TypeTags extends AnyRef
Type Members
-
-
trait
WeakTypeTag[T] extends Equals with Serializable
Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
def
+(other: String): String
-
def
->[B](y: B): (TypeTags, B)
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
object
TypeTag extends Serializable
-
object
WeakTypeTag extends Serializable
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
def
ensuring(cond: (TypeTags) ⇒ Boolean, msg: ⇒ Any): TypeTags
-
def
ensuring(cond: (TypeTags) ⇒ Boolean): TypeTags
-
def
ensuring(cond: Boolean, msg: ⇒ Any): TypeTags
-
def
ensuring(cond: Boolean): TypeTags
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
def
formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
-
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
-
-
def
→[B](y: B): (TypeTags, B)
Inherited from Any
Inherited by implicit conversion StringFormat from
TypeTags to StringFormat[TypeTags]
Inherited by implicit conversion ArrowAssoc from
TypeTags to ArrowAssoc[TypeTags]
A
TypeTag[T]encapsulates the runtime type representation of some typeT. Like scala.reflect.Manifest, the prime use case ofTypeTags is to give access to erased types. However,TypeTags should be considered to be a richer replacement of the pre-2.10 notion of a Manifest, that are, in addition, fully integrated with Scala reflection.There exist three different types of
TypeTags:A full type descriptor of a Scala type. For example, a
TypeTag[List[String]]contains all type information, in this case, of typescala.List[String].A partial type descriptor of a Scala type. For example, a
ClassTag[List[String]]contains only the erased class type information, in this case, of typescala.collection.immutable.List.ClassTags provide access only to the runtime class of a type. Analogous to scala.reflect.ClassManifestA type descriptor for abstract types (see description below).
Like Manifests,
TypeTags are always generated by the compiler, and can be obtained in three ways:#1 Via the methods typeTag, classTag, or weakTypeTag
For example:
Each of these methods constructs a
TypeTag[T]orClassTag[T]for the given type argumentT.#2 Using an implicit parameter of type
TypeTag[T],ClassTag[T], orWeakTypeTag[T]For example:
#3 Context bound of a type parameter
...on methods or classes. The above example can be implemented as follows:
WeakTypeTagsWeakTypeTag[T]generalizesTypeTag[T]. Unlike a regularTypeTag, components of its type representation can be references to type parameters or abstract types. However,WeakTypeTag[T]tries to be as concrete as possible, i.e. if type tags are available for the referenced type arguments or abstract types, they are used to embed the concrete types into theWeakTypeTag[T].Continuing the example above:
TypeTags and Manifests
TypeTags correspond loosely to the pre-2.10 notion of scala.reflect.Manifests. While scala.reflect.ClassTag corresponds to scala.reflect.ClassManifest and scala.reflect.api.TypeTags#TypeTag mostly corresponds to scala.reflect.Manifest, other pre-2.10Manifesttypes do not have a direct correspondence with a 2.10 "Tag" type.This is because
Tags can reify arbitrary types, so they are always available. -Instead, one can compare their
Tagwith one of the baseTags (defined in the corresponding companion objects) in order to find out whether or not it represents a primitive value class. Additionally, it's possible to simply use<tag>.tpe.typeSymbol.isPrimitiveValueClass.Manifestcompanion objects.Instead, one could generate corresponding types using the reflection APIs provided by Java (for classes) and Scala (for types).
Instead, one culd use the reflection APIs provided by Java (for classes) and Scala (for types).
In Scala 2.10, scala.reflect.ClassManifests are deprecated, and it is planned to deprecate scala.reflect.Manifest in favor of
TypeTags andClassTags in an upcoming point release. Thus, it is advisable to migrate anyManifest-based APIs to useTags.For more information about
TypeTags, see the Reflection Guide: TypeTagsscala.reflect.ClassTag, scala.reflect.api.TypeTags#TypeTag, scala.reflect.api.TypeTags#WeakTypeTag