sequence :: (a, b) -> Parser (a, b) sequence inp = try (once inp >>= sequence) <|> pure inp. In other words, I am looking for a function ...
確定! 回上一頁