CurryInfo: profiling-3.0.0 / Debug.Profile.showMemInfo

definition:
showMemInfo :: [(ProcessInfo,Int)] -> String
showMemInfo infos = intercalate ", " $
  formatItem Memory "Memory: "  ++
  formatItem Code   "Code: "    ++
  formatItem Stack  "Stack: "   ++
  formatItem Choices"Choices: " ++
  formatItem Heap   "Heap: "
 where
   formatItem i s = maybe [] (\v -> [s ++ showBytes v]) (lookup i infos)

   showBytes b = if b<10000 then show b
                            else show (b `div` 1000) ++ " kb"
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Get a human readable version of the memory situation from the
--- process infos.
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
showMemInfo
precedence:
no precedence defined
result-values:
_
signature:
[(ProcessInfo, Prelude.Int)] -> String
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term