我在将 Maybes 列表转换为字符串列表时遇到问题。
我的列表看起来像这样:[Nothing,Just 3,Just 9,Nothing,Nothing]。
我想用点 ('.') 替换所有 Nothing's,用“Int”替换所有 Just Int's。
到目前为止,我的解决方案不起作用。
[if c == Nothing then c = '.' else show (fromJust c) | c <- [Nothing, Just 3.... etc] ]
我收到此错误消息:输入“=”时解析错误
我猜我不能只给 c '.' 的值。像Java或其他语言一样。
有任何想法吗?