CurryInfo: golang-1.0.0 / Language.Go.Show.showGoProg

definition: Info
 
showGoProg :: GoProg -> String
showGoProg (GoProg package imports decls) = "package " ++ package ++ "\n\n"
  ++ (showGoImports imports )
  ++ (concatMap (\x -> (showGoTopLevelDecl x) ++ "\n") decls)
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Shows a Go program as a string in Go syntax.
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({GoProg}) |-> _}
name: Info
 showGoProg
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Language.Go.Types.GoProg -> 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