I've got a list of strings, is it possible to convert it to an list of ints? E.g.:
["1","2"] -> [1,2]
Well
f :: [String] -> [Int] f = map read
No?
1.4m articles
1.4m replys
5 comments
57.0k users