CurryInfo: exact-print-2.0.0 / Curry.Comment.readCommentsFileRaw

definition: Info
 
readCommentsFileRaw :: String -> IO String
readCommentsFileRaw filename = do
  extfcy <- doesFileExist filename
  if extfcy
   then readFile filename
   else do let subdirfilename = inCurrySubdir filename
           exdirtfcy <- doesFileExist subdirfilename
           if exdirtfcy
            then readFile subdirfilename
            else error ("EXISTENCE ERROR: Comment file '" ++ filename ++
                        "' does not exist")
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
| Reads the text from a specified file containing comments
failfree: Info
 <FAILING>
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_) |-> _}
name: Info
 readCommentsFileRaw
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 String -> Prelude.IO String
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 possibly non-terminating
totally-defined: Info
 possibly non-reducible on same data term