Lets say I've got the following code
type IsTall = Bool
type IsAlive = Bool
is_short_alive_person is_tall is_alive = (not is_tall) && is_alive
Say, later on, I've got the following
a :: IsAlive
a = False
b :: IsTall
b = True
And call the following, getting the two arguments around the wrong way:
is_short_alive_person a b
This successfully compiles unfortunately, and at runtime tall dead people are instead found instead of short alive people.
I would like the above example not to compile.
My first attempt was:
newtype IsAlive = IsAlive Bool
newtype IsTall = IsTall Bool
But then I can't do something like.
switch_height :: IsTall -> IsTall
switch_height h = not h
As not is not defined on IsTalls, only Bools.
I could explicitly extract the Bools all the time, but that largely defeats the purpose.
Basically, I want IsTalls to interact with other IsTalls, just like they're Bools, except they won't interact with Bools and IsAlives without an explicit cast.
What's the best way to achieve this.
p.s. I think I've achieved this with numbers by doing in GHC:
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
newtype UserID = UserID Int deriving (Eq, Ord, Num)
newtype GroupID = GroupID Int deriving (Eq, Ord, Num)
(i.e. UserID's and GroupID's shouldn't interact)
but I can't seem to do this with Bools (deriving Bool doesn't work). I'm not even sure the above is the best approach anyway.
IsTallandIsAlivetypes are a terrible idea. It's a false generalization of the usually decent idea of using disjoint types to ensure type safety. Compare this to yourUserIDandGroupID; in that case it makes sense to have separate types because it doesn't make sense to pass aUserIdwhere aGroupIDis needed, or add one to the other (though probably neither should implementNum). However, it does make sense to test whether a person is tall and alive, tall or alive, not tall and alive, etc. – sacundim May 11 '12 at 17:12newtype Height = Tall | Shortand then doingx == Talletc. A bit more typing, but I thought it made the code more readable and typesafe. – Clinton May 14 '12 at 0:37