specialized

scala.specialized

Annotate type parameters on which code should be automatically specialized. For example:

  class MyList[@specialized T] ...

Type T can be specialized on a subset of the primitive types by specifying a list of primitive types to specialize at:

  class MyList[@specialized(Int, Double, Boolean) T] ..

Attributes

Graph
Supertypes
class Annotation
class Object
trait Matchable
class Any

Members list

Value members

Constructors

def this()