views:

95

answers:

2

I wanted to ask if there is a list of annotations for Scala 2.8.0? I stumbled upon @inline and @specialized but it would be nice if there is a complete list which also explains what they do exactly.

If such a list doesn't exist: Are there some annotations one should be familiar with?

+6  A: 

Tour of Scala Annotations: http://www.scala-lang.org/node/106

Internals of Scala Annotations: http://www.scala-lang.org/sid/5

Alain O'Dea
+1  A: 

To answer my own question:

The official "The Scala Language Specification Version 2.8" actually also has a nice list of annotations in it with some explanation. (Chapter 11, page 133ff.)

Although for example @inline isn't listed there. So it seems not to be complete either.

Plankalkül