CurryInfo: currypp-3.2.0 / CPP.ICode.Parser.ML.Warning.wmap

definition: Info
 
wmap :: (a -> (b,[Warning])) -> [a] -> ([b],[Warning])
wmap f ys = wmapper ys
  where wmapper [] = ([],[])
        wmapper (x:xs) =
          let (p,q) = f x
              (a,b) = wmapper xs
           in (p : a,q ++ b)
demand: Info
 argument 2
deterministic: Info
 deterministic operation
documentation: Info
 
map a list with a warning function, to get all warnings
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> {(,)}}
name: Info
 wmap
precedence: Info
 no precedence defined
result-values: Info
 {(,)}
signature: Info
 (a -> (b, [(CPP.ICode.ParsePos.Pos, String)])) -> [a]
-> ([b], [(CPP.ICode.ParsePos.Pos, String)])
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms