Typed

interface Typed<A>

Used as an argument for currying functions, allows to define a value and its type.

Types

Companion
Link copied to clipboard
common
object Companion

Functions

equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
toString
Link copied to clipboard
common
open fun toString(): String

Properties

type
Link copied to clipboard
common
abstract val type: TypeToken<A>
The argument type.
value
Link copied to clipboard
common
abstract val value: A
The argument value.