Created
October 25, 2018 09:27
-
-
Save i-am-tom/3714d7492fabc2eb973d0c5273f2bba8 to your computer and use it in GitHub Desktop.
Another love letter to {-# INCOHERENT #-}
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE DeriveGeneric #-} | |
{-# LANGUAGE FlexibleInstances #-} | |
{-# LANGUAGE GADTs #-} | |
{-# LANGUAGE GeneralizedNewtypeDeriving #-} | |
-- | Nothing very serious. | |
-- | |
-- >>> 5 Years | |
-- Years 5 | |
-- | |
-- >>> 5 Years :: Months | |
-- Months 60 | |
-- | |
-- >>> 5 Years + 3 Months | |
-- Years 5 | |
-- | |
-- >>> (5 Years + 3 Months) :: Months | |
-- Months 63 | |
module Coherence where | |
import Data.Coerce (coerce) | |
newtype Months = Months Integer | |
deriving (Show, Num, Integral, Real, Enum, Ord, Eq, Generic) | |
newtype Years = Years Integer | |
deriving (Show, Num, Integral, Real, Enum, Ord, Eq, Generic) | |
instance {-# INCOHERENT #-} result ~ Years | |
=> Num ((Integer -> Years) -> result) where | |
fromInteger f toYears = toYears f | |
instance Num ((Integer -> Years) -> Months) where | |
fromInteger f toYears = coerce (toYears f * 12) | |
instance {-# INCOHERENT #-} result ~ Months | |
=> Num ((Integer -> Months) -> result) where | |
fromInteger f toMonths = toMonths f | |
instance Num ((Integer -> Months) -> Years) where | |
fromInteger f toMonths = coerce (toMonths f `div` 12) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment