Versions in this module Expand all Collapse all v0 v0.3.0 Aug 27, 2025 Changes in this version type Map + func NewMap[K string, V any]() Map[K, V] v0.2.0 Aug 2, 2025 v0.1.1 Aug 1, 2025 v0.1.0 Aug 1, 2025 Changes in this version + const KindBool + const KindFloat + const KindInt + const KindMap + const KindNull + const KindSeq + const KindString + const KindTimestamp + type Any struct + Kind int + Value any + func (a *Any) UnmarshalJSON(value []byte) error + func (a *Any) UnmarshalYAML(node *yaml.Node) error + func (a Any) MarshalJSON() ([]byte, error) + type Map struct + Items map[K]V + Order []K + func (m *Map[K, V]) Get(k K) (V, bool) + func (m *Map[K, V]) Iter() iter.Seq2[K, V] + func (m *Map[K, V]) Set(k K, v V) + func (m *Map[K, V]) Size() int + func (m *Map[K, V]) UnmarshalJSON(value []byte) error + func (m *Map[K, V]) UnmarshalYAML(node *yaml.Node) error + func (m Map[K, V]) MarshalJSON() ([]byte, error)