AbstractWrapper

abstract class AbstractWrapper<out Wrapped>(val signature: Signature)

Signature to Wrapped type, abstract wrapper class

Author

Enrico

Parameters

signature

the supported input signature

Inheritors

Constructors

Link copied to clipboard
constructor(signature: Signature)
constructor(name: String, arity: Int, vararg: Boolean = false)

Properties

Link copied to clipboard

Gets this wrapped primitive description Pair formed by signature and wrapped primitive type

Link copied to clipboard

A shorthand to get the signature functor name

Link copied to clipboard
abstract val implementation: Wrapped

The wrapped implementation

Link copied to clipboard