view similer.hs @ 11:e8a5df54480e

Define sample for Monad style
author Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
date Tue, 02 Sep 2014 16:25:53 +0900
parents 7c7efee7891f
children
line wrap: on
line source

{-# LANGUAGE GADTs #-}

data Similer a = (Eq a) => Similer a (a -> a) a

instance (Eq a) => Eq (Similer a) where
  s == ss = same s == same ss

same :: (Eq a) => Similer a -> a
same (Similer x f y) = if (f x) == y then y else undefined

mu :: (Eq a) => Similer (Similer a) -> Similer a
mu (Similer a f b) = if ((f a) == b) then b else undefined

class EqFunctor f where
  eqmap :: (Eq a, Eq b) => (a -> b) -> f a -> f b

instance EqFunctor Similer where
  eqmap f s = Similer fs id fs
    where fs = f $ same s

class EqMonad m where
  (>>=) :: (Eq a, Eq b) => m a -> (a -> m b) -> m b
  return ::(Eq a) =>  a -> m a

instance EqMonad Similer where
  return x = Similer x id x
  s >>= f  = mu (eqmap f s)

similer :: (Eq a) => (a -> a) -> (a -> a) -> a -> a
similer f g x = same $ Similer x g (f x)



double :: Int -> Int
double x = (2 * x)

twicePlus :: Int -> Int
twicePlus x = x + x

plusTwo :: Int -> Int
plusTwo x = x + 2

-- samples

{-
*Main> same $ Main.return 100 Main.>>= (\x -> Similer x twicePlus  $ double x)
200

*Main> same $ Main.return 2 Main.>>= (\x -> Similer x plusTwo $ double x)
4

*Main> same $ Main.return 100 Main.>>= (\x -> Similer x plusTwo $ double x)
*** Exception: Prelude.undefined
-}