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

definition: Info
 
showGoCommaList :: (a -> String) -> [a] -> String
showGoCommaList _ []           = ""
showGoCommaList f [x]          = f x
showGoCommaList f (x:xs@(_:_)) = (f x) ++ ", " ++ (showGoCommaList f xs)
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
Shows a List of a Go type as a comma separated list in go syntax.
@param f    - function to show the Go type as a string in go syntax
@param list - list of a Go type
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,{[]}) |-> {[]} || (_,{:}) |-> _}
name: Info
 showGoCommaList
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 (a -> String) -> [a] -> String
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms