Versions in this module Expand all Collapse all v1 v1.16.11 Aug 20, 2024 Changes in this version + var Any = anyType + var Bool = TypeOf(true) + var Float = TypeOf(float32(0)) + var Float64 = TypeOf(float64(0)) + var Int = TypeOf(0) + var Int16 = TypeOf(int16(0)) + var Int32 = TypeOf(int32(0)) + var Int64 = TypeOf(int64(0)) + var Int8 = TypeOf(int8(0)) + var Nil = nilType + var String = TypeOf("") + var Uint = TypeOf(uint(0)) + var Uint16 = TypeOf(uint16(0)) + var Uint32 = TypeOf(uint32(0)) + var Uint64 = TypeOf(uint64(0)) + var Uint8 = TypeOf(uint8(0)) + type Map map[string]Type + func (m Map) Equal(t Type) bool + func (m Map) Nature() Nature + func (m Map) String() string + type StrictMap map[string]Type + func (m StrictMap) Equal(t Type) bool + func (m StrictMap) Nature() Nature + func (m StrictMap) String() string + type Type interface + Equal func(Type) bool + Nature func() Nature + String func() string + func Array(of Type) Type + func TypeOf(v any) Type