prelude-ls
prelude-ls copied to clipboard
Wrong signature of `scanr` specified
in prelude
invalid signature of scanr
specified
Now:
(a → b → b) → b → [a] → [b]
Should be:
(b → a → b) → b → [a] → [b]
I guess, it had been copied from haskell prelude,
but here it's implemented differently