MapType

class MapType(val keyType: Type, val valType: Type) : Type

A type to specify a variable-size mapping of keys of a single type to values of a single type.

Constructors

Link copied to clipboard
fun MapType(keyType: Type, valType: Type)

Properties

Link copied to clipboard
val keyType: Type

the type of the keys in the mapping

Link copied to clipboard
val valType: Type

the type of the values in the mapping