Signature

object Signature
Companion
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

case class MethodSignature[T] extends Signature[T]

Encodes the structure of an uncurried Scala method signature, with generic type parameter lists erased to just their size and position.

Encodes the structure of an uncurried Scala method signature, with generic type parameter lists erased to just their size and position.

Value Params
params

represents types of method parameters interspersed by the lengths of generic type parameter lists

result

represents the type of the method result

Types

type ParamSig[T] = Either[Int, T]

Encodes either an Int which is the size of a type parameter list, or T, which represents a type

Encodes either an Int which is the size of a type parameter list, or T, which represents a type

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def apply[T](params: List[ParamSig[T]], result: T): MethodSignature[T]
def merge[T](sb: StringBuilder, sig: Signature[T]): StringBuilder