Hacker News new | ask | show | jobs
by dllthomas 1712 days ago
> Checker.HS uses {-# LANGUAGE LambdaCase #-}

Allowing people to write

    \case SomePattern -> ... | OtherPattern -> ...
instead of

    \x -> case x of SomePattern -> ... | OtherPattern -> ...
is not a meaningful change in complexity.