count
builtin-function
(count predicate seq)
Counts the number of elements in seq that match the predicate function.
seq
predicate
make-html > (count odd? '(1 2 3 4 5)) it: 3 make-html > (count #(odd? (.length %1)) '("aap" "noot" "mies")) it: 1