Possible Duplicate:
Counting unique elements in a list
Count frequency of each element in a list
I tried Google, Hoogle, and here and didn't see anything obvious.
It should take ['a', 'b', 'e', 'c', 'e', 'a', 'e']
and return [('a', 2), ('b', 1), ('c', 1), ('e', 3)]
or something to that effect.