Skip to content

Instantly share code, notes, and snippets.

@M0nteCarl0
Last active July 29, 2023 11:01
Show Gist options
  • Save M0nteCarl0/a64eddcd8c912cf88b54224a2ec25103 to your computer and use it in GitHub Desktop.
Save M0nteCarl0/a64eddcd8c912cf88b54224a2ec25103 to your computer and use it in GitHub Desktop.
Example implentation map of interface for Golang
package main
import (
"fmt"
)
type MyMap map[string]interface{}
func (m MyMap) Set(key string, value interface{}) {
m[key] = value
}
func (m MyMap) Get(key string) (interface{}, bool) {
value, ok := m[key]
return value, ok
}
func (m MyMap) Delete(key string) {
delete(m, key)
}
func (m MyMap) Print() {
for key, value := range m {
fmt.Printf("%s: %v\n", key, value)
}
}
func main() {
m := make(MyMap)
m.Set("name", "John")
m.Set("age", 30)
m.Set("isStudent", true)
value, ok := m.Get("name")
if ok {
fmt.Println("Value:", value)
}
m.Print()
m.Delete("age")
m.Print()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment