Skip to content
This repository has been archived by the owner on Apr 28, 2020. It is now read-only.
/ go-hashmap Public archive

go-hashmap provides a mechanism to log maps as a string of key/value pairs

License

Notifications You must be signed in to change notification settings

davidnarayan/go-hashmap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-hashmap

go-hashmap provides a way to log maps as a string of key/value pairs

package main

import (
	"fmt"
	"github.com/davidnarayan/go-hashmap"
)

func main() {
	hm := hashmap.NewHashMap()
	hm.Set("foo", "123")
	hm.Set("bar", "456")

	fmt.Println(hm)
}

This outputs:

bar="456" foo="123"

About

go-hashmap provides a mechanism to log maps as a string of key/value pairs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages