Is there anyway to define a function like the following in Haskell?
or True True = True
or True undefined = True
or True False = True
or undefined True = True
or undefined False = undefined
or undefined undefined = undefined
or False True = True
or False undefined = undefined
or False False = False
I don't currently have a use case for it (though I'd be interested in one), I'm just interested if it's possible.

undefinedisn't a value; it's the absence of a value. Therefore, you cannot "check if it is undefined", so you have to choose: number 1, 6 and 8 or number 4, 5, 6; you can't have both. – dflemstr Jun 8 '12 at 15:09