简体   繁体   中英

What is the Frege equivalent to Haskell “readFile”?

While preparing the Frege equivalents for the Real-world Haskell code examples (chapter 2), I could not find the equivalent for

:type readFile

What would be the closest match?

It seems you will have to use openReader :: String -> IO BufferedReader function along with getLines :: BufferedReader -> IO [String] function. Then you can just combine the list of string into a single string.

Ok, I made this

readFile :: String -> IO [String]
readFile fileName = do
    file <- openReader fileName
    file.getLines

(This wouldn't be displayed nicely as a comment, so I made it an answer)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM