scala.annotation.alpha.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala3-library_3 Show documentation
Show all versions of scala3-library_3 Show documentation
scala3-library-bootstrapped
The newest version!
package scala.annotation
/** An annotation that defines an external name for a definition.
* If an `alpha(extname)` annotation is given for a method or some other
* definition, its implementation will use the name `extname` instead of
* the regular name. An `alpha` annotation is mandatory for definitions
* with symbolic names.
*/
@deprecated("use @targetName instead")
final class alpha(externalName: String) extends StaticAnnotation
© 2015 - 2024 Weber Informatics LLC | Privacy Policy