1
在zip code example,有線:Elm的郵政編碼示例中的`keepIf`的用途是什麼?
responses = sendGet (fromMaybe "" <~ keepIf isJust Nothing realInput)
realInput :: Maybe String
哪裏。在我看來,這可以減少到:
responses = sendGet (fromMaybe "" <~ realInput)
有什麼區別嗎?