Skip to content

Instantly share code, notes, and snippets.

@mottet-dev
Created June 20, 2019 20:23
Embed
What would you like to do?
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