github.com/scottcagno/storage@v1.8.0/pkg/generic/omap/omap.go (about)

     1  package omap
     2  
     3  type OrderedMap[K comparable, V any] struct {
     4  	data map[K]V
     5  	keys []K
     6  }