Is there a good reason why the type of Prelude.read is
read :: Read a => String -> a
rather than returning a Maybe value?
read :: Read a => String -> Maybe a
Since the string might fail to be parseable Haskell, wouldn't the latter be be more natural?
Or even an Either String a, where Left would contain the original string if it didn't parse, and Right the result if it did?
Edit:
I'm not trying to get others to write a corresponding wrapper for me. Just seeking reassurance that it's safe to do so.
takeaccept anyNum a => a? Why is there a special case offmapfor lists? Why isFunctornot required forMonadinstances? I expect the answer to be similar to the answers to these and related questions. – delnan Nov 9 '11 at 15:05readMaybefunction will be added soon. – augustss Nov 9 '11 at 15:17takebeIntegral n => n -> [a] -> [a]? – Doug McClean Nov 10 '11 at 16:51Integral, notNum- brain fart. – delnan Nov 10 '11 at 16:54