EMA-XPS Online


COUNT-IF

COUNT-IF
========

syntax: (count-if <predicate> <sequence>)

This function counts the elements of a sequence, which
fulfill the predicate. It returns an integer.

example:      >(count-if #'numberp '(1 2 3 4 a b c d))
              4


EMA-XPS Online