summaryrefslogblamecommitdiff
path: root/src/library/scala/specialized.scala
blob: aba65bb0441ea24db49bbb89c1089a7ea3877fcb (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                                                          
                                                                          




                                                                          

 




                                                                  
                                      
           

                                                                   
                                                          

          
                                                          
           

              
   
                                                                                        
              
                                                                    


   
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2010, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |    http://scala-lang.org/               **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */



package scala

/** Annotate type parameters on which code should be automatically
 *  specialized. For example:
 *  <code>
 *    class MyList[@specialized T] ...
 *  </code>
 *
 *  Type T can be specialized on a subset of the primitive types by
 *  specifying a list of primitive types to specialize at:
 *
 *  <code>
 *   class MyList[@specialized(Int, Double, Boolean) T] ..
 *  </code>
 *
 *  @since 2.8
 */
class specialized(types: runtime.AnyValCompanion*) extends annotation.StaticAnnotation {
  def this() {
    this(Unit, Boolean, Byte, Short, Char, Int, Long, Float, Double)
  }
}