You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
in prelude
invalid signature of
scanrspecifiedNow:
(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