Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Go

Idiom #316 Count occurrences in a list

Determine the number c of elements in the list x that satisfy the predicate p.

func count[T any](x []T, p func(T) bool) int {
	c := 0
	for _, v := range x {
		if p(v) {
			c++
		}
	}
	return c
}

This generic func works for any type parameter T
c := 0
for _, v := range x {
	if p(v) {
		c++
	}
}
  
c=count(p(x))

p has to be an elemental function with an argument of the type of x.

New implementation...