Skip to content

Instantly share code, notes, and snippets.

@mottet-dev
Created June 20, 2019 20:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mottet-dev/87f87d9fb28f4f8fbd8ceb822a80e286 to your computer and use it in GitHub Desktop.
Save mottet-dev/87f87d9fb28f4f8fbd8ceb822a80e286 to your computer and use it in GitHub Desktop.
Go Funk - Filter
package main
import (
"fmt"
"github.com/thoas/go-funk"
)
func main() {
baseSlice := []int{1, 2, 3, 4, 5}
newSlice := funk.Filter(baseSlice, func(x int) bool {
return x != 2
}).([]int)
fmt.Println(baseSlice)
fmt.Println(newSlice)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment