Length of tuple
When I ask for the length of a tuple, I get:
length
works by calling a "folding" function, which relies on the Foldable
typeclass. The Foldable
instance for tuples is defined in such a way that the result of length
is always 1
.
While this is confusing, it is a consistent behavior.