Skip to content

Latest commit

 

History

History
52 lines (42 loc) · 1.23 KB

readme.md

File metadata and controls

52 lines (42 loc) · 1.23 KB

go-underscore

go-underscore is a utility-belt library for Golang that provides support for the usual functional suspects (each, map, reduce, filter...) without creating special container. This is largely inspeired by javascript package underscore. It rely on the new golang generic feature available with the 1.18 (still in development).

Usage/Examples

Install: go install github.com/nicolasgere/go-underscore

Note: Generic are not available in golang yet, it would be available in golang 1.18. You can already try it with gotip.

package main
import (
	"fmt"
	underscore "github.com/nicolasgere/go-underscore"
)

func main() {
	list := []int{1,2,3,4,5}
	listFiltered := underscore.Filter(list, func(e int) bool{
		return e > 2
	})
	fmt.Println(listFiltered) // Print: [3,4,5]
	listSquared := underscore.Each(listFiltered, func(value int) (res int){
		return value * value
	})
	fmt.Println(listSquared) // Print: [9,16,25]

	sum := underscore.Reduce(listSquared, func(value int, reducer int) (res int){
		return value + reducer
	}, 0)
	fmt.Println(sum) // Print: 50
}

Available function

  • Each
  • Map
  • Filter
  • Every
  • Some
  • Reduce
  • Find
  • Sort
  • Contains
  • Shuffle
  • First
  • Last