Packages

t

scala.reflect

ClassManifestDeprecatedApis

trait ClassManifestDeprecatedApis[T] extends OptManifest[T]

Self Type
ClassManifest[T]
Annotations
@deprecated
Deprecated

(Since version 2.10.0) use scala.reflect.ClassTag instead

Source
ClassManifestDeprecatedApis.scala
Linear Supertypes
OptManifest[T], Serializable, java.io.Serializable, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ClassManifestDeprecatedApis
  2. OptManifest
  3. Serializable
  4. Serializable
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def canEqual(other: Any): Boolean
  2. def newArray(len: Int): Array[T]

Deprecated Value Members

  1. def <:<(that: ClassManifest[_]): Boolean

    Tests whether the type represented by this manifest is a subtype of the type represented by that manifest, subject to the limitations described in the header.

    Tests whether the type represented by this manifest is a subtype of the type represented by that manifest, subject to the limitations described in the header.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use scala.reflect.runtime.universe.TypeTag for subtype checking instead

  2. def >:>(that: ClassManifest[_]): Boolean

    Tests whether the type represented by this manifest is a supertype of the type represented by that manifest, subject to the limitations described in the header.

    Tests whether the type represented by this manifest is a supertype of the type represented by that manifest, subject to the limitations described in the header.

    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use scala.reflect.runtime.universe.TypeTag for subtype checking instead

  3. def arrayManifest: ClassManifest[Array[T]]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use wrap instead

  4. def erasure: Class[_]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use runtimeClass instead

  5. def newArray2(len: Int): Array[Array[T]]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use wrap.newArray instead

  6. def newArray3(len: Int): Array[Array[Array[T]]]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use wrap.wrap.newArray instead

  7. def newArray4(len: Int): Array[Array[Array[Array[T]]]]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use wrap.wrap.wrap.newArray instead

  8. def newArray5(len: Int): Array[Array[Array[Array[Array[T]]]]]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use wrap.wrap.wrap.wrap.newArray instead

  9. def newArrayBuilder(): ArrayBuilder[T]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use ArrayBuilder.make(this) instead

  10. def newWrappedArray(len: Int): WrappedArray[T]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) create WrappedArray directly instead

  11. def typeArguments: List[OptManifest[_]]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use scala.reflect.runtime.universe.TypeTag to capture type structure instead