Given a list of type IO [Double]
, I want to be able to check that the list is of the desired length.
I'm guessing I need to make use of functors here, but I don't understand how to go about defining it. Do I write a functor instance of the length function? Or do I write a functor instance of a data type that uses the length function in fmap
?
Monads, functors, etc. are all pretty new to me.
A value of type
IO [Double]
does not have a length, because it is not a list of Doubles, but rather an IO action which, when performed, will produce a list of Doubles. So, it is impossible to write a function of typeIO [a] -> Int
.However, you can easily write a function of type
IO [a] -> IO Int
, which is as simple asfmap length
.