8
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AllowAmbiguousTypesはどこで使える機能なの? 具体例編

Last updated at Posted at 2018-08-23

今回の例: ScopedTypeVariables、TypeApplicationsとの組み合わせ

何か全然よくわからない、
そういえばHaskell初心者だった頃によくGHCサジェストされた気がする
AllowAmbiguousTypesプラグマですが、
初めて「お前を使わせてくれ!」っていう場面に遭遇しました。

こちらです :point_down:


{-# LANGUAGE AllowAmbiguousTypes #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeApplications #-}

check :: forall a. (Group a, Eq a) => Bool
check = (empty :: a) <> empty == empty

main :: IO ()
main = do
  smallCheck 2 $ check @Sum
  smallCheck 2 $ check @RSum
newtype Sum = Sum
  { unSum :: Int
  } deriving (Show, Eq, Num, Enum)

newtype RSum = RSum
  { unRSum :: Rational
  } deriving (Show, Eq, Num, Enum)

class Monoid a => Group a where
  inverse :: a -> a

instance Group Sum where
  inverse = negate

instance Group RSum where
  inverse = negate

instance Group () where
  inverse () = ()

これは何?

最近は技術書典5で出す「矢澤にこ先輩といっしょに代数!」という本を書いているのですが :point_down:

群の章を書いているところで
「任意の群はe * e = eだっけ?」
という疑問に駆られたので、
その確認を行ったものです。

check :: forall a. (Group a, Eq a) => Bool
check = (empty :: a) <> empty == empty

smallCheck 2 $ check @Sum
smallCheck 2 $ check @RSum

ここでaは引数に表れていないのでAllowAmbiguousTypesが必要になり、
ScopedTypeVariablesによりaを文中で使用。
そして使用側でその群インスタンスの型を…
引数に依らず指定しています。

引数に依らないというところが、
AllowAmbiguousTypesが必要になる要点でした :dog2:

1533346377850.jpg

宣伝

技術書典5に出した後は、
Boothでの電子書籍での販売を予定しております :dog:

よろしくお願いします!

8
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?