# Feature or enhancement
`len(Enum)` has no useful meaning and should therefore raise the appropriate error
# Pitch
I cannot figure out any scenario, in which len(Enum) should not raise. Enum is a type and as any other types, such as `len(list)` or `len(dict)`, and should not give any meaningful result on len.
Thoughts?