github.com/chain5j/chain5j-pkg@v1.0.7/collection/maps/linked_hashmap/kv.go (about) 1 // Package linkedHashMap 2 // 3 // @author: xwc1125 4 package linkedHashMap 5 6 type KV struct { 7 Key interface{} 8 Val interface{} 9 }