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

definition: Info
 
goShowExprBranch :: Int -> GoExprBranch -> String
goShowExprBranch n (GoExprDefault stats)      = (indent n) ++ "default:\n"
  ++ (concatMap (showGoStat (n+1)) stats)
goShowExprBranch n (GoExprBranch exprs stats) = (indent n) ++ "case "
  ++ (showGoCommaList showGoExpr exprs) ++ ":\n"
  ++ (concatMap (showGoStat (n+1)) stats)
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
Shows a Go expression branch as a String in Go Syntax.
@param n      - number of spaces to indent
@param branch - branch to show
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{GoExprDefault}) |-> _ || (_,{GoExprBranch}) |-> _}
name: Info
 goShowExprBranch
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Prelude.Int -> Language.Go.Types.GoExprBranch -> 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