Making a ternary logic table, and I would like to make my own function for an operator that i'll call "<=>". so for example, I want to do this, but that isn't right. what's the correct way to do this? or any links I can read? couldn't really find anything in a google search
data Ternary = T | F | M
deriving (Eq, Show, Ord)
<=>::Ternary->Ternary->Ternary
<=> T F = F
<=> T T = T
<=> T M = M
<=> F F = T
<=> F T = F
<=> F M = M
<=> M F = M
<=> M T = M
<=> M M = T

M <=> Mshould beMrather thanT. But that depends on your "Maybe" semantics. – bitmask Feb 20 '12 at 6:06infixl,infixr... – Landei Feb 20 '12 at 8:31