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

definition: Info
 
showGoImports :: [String] -> String
showGoImports []       = "\n"
showGoImports (x : xs) = "import " ++ (show x) ++ "\n" ++ (showGoImports xs)
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
Shows a list of imports as a string in Go syntax.
failfree: Info
 _
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({[]}) |-> {:} || ({:}) |-> _}
name: Info
 showGoImports
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 [String] -> 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