All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.reflect.macros.Names.scala Maven / Gradle / Ivy

There is a newer version: 2.11.2
Show newest version
package scala.reflect
package macros

trait Names {
  self: Context =>

  /** Creates a fresh string */
  def fresh(): String

  /** Creates a fresh string from the provided string */
  def fresh(name: String): String

  /** Creates a fresh name from the provided name */
  def fresh[NameType <: Name](name: NameType): NameType
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy