
6 Apr
2004
6 Apr
'04
2:26 p.m.
Am Dienstag, 6. April 2004 16:23 schrieb Russ Lewis:
Another newbie question: Is it possible to catch _|_ - that is, to encounter it, handle it and continue? I'm assuming that you all are going to say no, since I can't figure out any way to do this and retain the functional nature of Haskell.
If you want to signal errors and later catch them, you probably should use Maybe value instead of value as the return types of your functions in question. Wolfgang