packages feed

metric-0.1.4: src/Data/List/Extras.lhs

> module Data.List.Extras (count) where

`count` is `length` with a numeric result type:

> count :: Num b => [a] -> b
> count = fromIntegral . length