|
@@ -101,3 +101,48 @@ func GetValueByKey[K comparable, V any](m map[K]any, key K) (V, bool) {
|
|
|
|
|
|
return v, true
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+type SortMap[K comparable, V any] struct {
|
|
|
+ sortedKeys []K
|
|
|
+ m map[K]V
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (sortMap *SortMap[K, V]) Range(callback func(index int, key K, value V)) {
|
|
|
+ if callback != nil {
|
|
|
+ for i, key := range sortMap.sortedKeys {
|
|
|
+ callback(i, key, sortMap.m[key])
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func Sort[K comparable, V any](m map[K]V, sortKeysFunc func(keys []K)) *SortMap[K, V] {
|
|
|
+ keys := make([]K, 0)
|
|
|
+ for key := range m {
|
|
|
+ keys = append(keys, key)
|
|
|
+ }
|
|
|
+
|
|
|
+ if sortKeysFunc != nil {
|
|
|
+ sortKeysFunc(keys)
|
|
|
+ }
|
|
|
+
|
|
|
+ return &SortMap[K, V]{
|
|
|
+ sortedKeys: keys,
|
|
|
+ m: m,
|
|
|
+ }
|
|
|
+}
|