Skip to content

Instantly share code, notes, and snippets.

View hoangdevelopers's full-sized avatar

Nguyen Duc Hoang hoangdevelopers

View GitHub Profile
@ParthDesai
ParthDesai / generic_demo.go
Last active September 3, 2021 09:54
Generic map function in golang
package main
import (
"fmt"
"reflect"
)
func main() {
r := genericMap([]int{1, 2, 3, 4}, func(x int) string {
return "Hello"