github.com/chain5j/chain5j-pkg@v1.0.7/collection/maps/hashmap/kv.go (about)

     1  // Package hashmap
     2  //
     3  // @author: xwc1125
     4  package hashmap
     5  
     6  // KV ...
     7  type KV struct {
     8  	Key   string
     9  	Value interface{}
    10  }