You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var rs map[string][]byte
// 排序
m := orderedmap.NewOrderedMap()
for k, _ := range rs {
fmt.Printf(" |-set-> %v\n", el.Key)
m.Set(k, rs[k])
}
// You can also use Back and Prev to iterate in reverse:
for el := m.Back(); el != nil; el = el.Prev() {
fmt.Printf(" |-get-> %v\n", el.Key)
}
The text was updated successfully, but these errors were encountered: