CurryInfo: curry-interface-2.0.1 / ShowInterface.showInterface

definition:
showInterface :: Options -> String -> IO ()
showInterface opts mname = do
  ic <- readCurryInterface mname
  --print ic -- only for debugging
  let Interface _ _ idecls = ic
      linsts  = filter isLocalInstance idecls
      modopts = opts { optModule = mname, optInstances = linsts }
  putStrLn $ line ++ "\nInterface of module '" ++ mname ++ "':\n" ++ line
  putStrLn $ pPrint $ ppInterface modopts ic
 where
  line = take 70 (repeat '-')

  isLocalInstance id = case id of
    IInstanceDecl _ _ _ _ Nothing -> True
    _                             -> False
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
-- Reads an `.icurry` interface for a module and pretty print it.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
showInterface
precedence:
no precedence defined
result-values:
_
signature:
CurryInterface.Pretty.Options -> String -> Prelude.IO ()
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term