Versions in this module Expand all Collapse all v1 v1.0.0 Mar 26, 2025 Changes in this version + type MapNode struct + K K + V V + type OrderedMap struct + func NewOrderedMap[K comparable, V any]() *OrderedMap[K, V] + func (m *OrderedMap[K, V]) Copy() *OrderedMap[K, V] + func (m *OrderedMap[K, V]) Delete(key K) bool + func (m *OrderedMap[K, V]) Get(key K) (V, bool) + func (m *OrderedMap[K, V]) Iter() iter.Seq2[K, V] + func (m *OrderedMap[K, V]) Len() int + func (m *OrderedMap[K, V]) MarshalJSON() ([]byte, error) + func (m *OrderedMap[K, V]) Set(key K, value V) bool + func (m *OrderedMap[K, V]) ToArray() []V + func (m *OrderedMap[K, V]) UnmarshalJSON(data []byte) error Other modules containing this package github.com/danielhookx/xcontainer