Versions in this module Expand all Collapse all v1 v1.0.1 Jun 17, 2026 v1.0.0 Jun 17, 2026 Changes in this version + func Delete[Type comparable, Type1 any](m *OrderedMap[Type, Type1], key Type) + type ObjectPool struct + func NewObjectPool[T any](size ...uint32) *ObjectPool[T] + func (p *ObjectPool[T]) Get() *T + type OrderedMap struct + func NewOrderedMap[K comparable, V any](size ...uint32) *OrderedMap[K, V] + func (this *OrderedMap[K, V]) Delete(key K) + func (this *OrderedMap[K, V]) Get(key K) (V, bool) + func (this *OrderedMap[K, V]) GetValues() []V + func (this *OrderedMap[K, V]) Iter() func(func(K, V) bool) + func (this *OrderedMap[K, V]) Put(key K, value V)