MethodTypeKind

scala.quoted.Quotes.reflectModule.MethodTypeKind

Type which decides on the kind of parameter list represented by MethodType.

Attributes

Source
Quotes.scala
Graph
Supertypes
trait Enum
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Type members

Enum entries

case Contextual extends MethodTypeKind

Represents a parameter list of a contextual method, like (using X1, ..., Xn) or (using x1: X1, ..., xn: Xn)

Represents a parameter list of a contextual method, like (using X1, ..., Xn) or (using x1: X1, ..., xn: Xn)

Attributes

Source
Quotes.scala
case Implicit extends MethodTypeKind

Represents a parameter list with implicit parameters, like (implicit X1, ..., Xn), (using X1, ..., Xn), (using x1: X1, ..., xn: Xn)

Represents a parameter list with implicit parameters, like (implicit X1, ..., Xn), (using X1, ..., Xn), (using x1: X1, ..., xn: Xn)

Attributes

Source
Quotes.scala
case Plain extends MethodTypeKind

Represents a parameter list without any implicitness of parameters, like (x1: X1, x2: X2, ...)

Represents a parameter list without any implicitness of parameters, like (x1: X1, x2: X2, ...)

Attributes

Source
Quotes.scala