Logo

Programming-Idioms

  • Perl

Idiom #316 Count occurrences in a list

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

my $c = grep { p($_) } @x;

grep iterates over list @x and calls function p() on $_ (the context variable). If p() yields true, then the list member is counted. In list context, the members would be returned. In scalar context, only the count is returned. $c is a scalar,
  
c=count(p(x))

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

New implementation...