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

definition: Info
 
showGoFuncDecl :: GoFuncDecl -> String
showGoFuncDecl (GoFuncDecl name params results body) = "func "++ name ++ "( "
  ++ (showGoCommaList showGoParam params) ++ " )( "
  ++ (showGoCommaList showGoParam results) ++ " ){\n"
  ++ (concatMap (showGoStat 1) body) ++ "}\n"
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Shows a Go function declaration as a string in Go syntax.
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({GoFuncDecl}) |-> _}
name: Info
 showGoFuncDecl
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Language.Go.Types.GoFuncDecl -> 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