以下两个功能极其相似。它们从 [String] n 元素中读取,[Int] 或 [Float]。我怎样才能把通用代码分解出来?我不知道 Haskell 中支持将类型作为参数传递的任何机制。
readInts n stream = foldl next ([], stream) [1..n]
where
next (lst, x:xs) _ = (lst ++ [v], xs)
where
v = read x :: Int
readFloats n stream = foldl next ([], stream) [1..n]
where
next (lst, x:xs) _ = (lst ++ [v], xs)
where
v = read x :: Float
我是 Haskell 的初学者,所以欢迎对我的代码发表任何评论。