<div dir="ltr">The idiom of using undefined to replace BangPatterns has a few benefits, which is why it gets used in libraries like bytestring. It doesn't require a language extension and applies a bit nicer in macro expansion because it infects one line of your patterns rather than either mangling all pattern matches or relying on subtleties about whether or not the pattern match earlier was enough to 'forget' the strictness of a later pattern when it isn't strict in a subsequent pattern.<div><br></div><div>foo !(Bar x) !(Bar y) = ...</div><div>foo y w = ... am I strict in w?</div><div><br></div><div>foo x y | seq x (seq y False) = undefined</div><div>foo (Bar x) (Bar y) = ...</div><div>foo y w = ... is definitely strict in w<br><br>Other usecases are for working with combinators like sizeOf, alignment, bitSize, bitSizeMaybe, finiteBitSize, or doing things like initializing self-referential IORef structures whenever you do have to tie the knot strictly, etc. In the former cases you can argue that the API should change to take a Proxy, then spend a couple of years driving that change process through, as most of them affect the current language report, but in the latter case you're basically stuck with either embracing momentary partiality and knowledge of lack of escape or working with inaccurately weak types after the structure is initialized, forever.<div><br></div><div>-Edward</div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Dec 23, 2019 at 11:30 AM Vilem Liepelt <<a href="mailto:vliepelt@futurefinance.com">vliepelt@futurefinance.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
> On 22 Dec 2019, at 14:15, Zemyla <<a href="mailto:zemyla@gmail.com" target="_blank">zemyla@gmail.com</a>> wrote:<br>
> <br>
> The most common legitimate usage for undefined I have is strictness:<br>
> <br>
> func x y | x `seq` False = undefined<br>
> func x y = ...<br>
> <br>
> There's nothing else that would go there, and when it's compiled, the reference to undefined disappears.<br>
<br>
Is this (better than | different from) using BangPatterns?<br>
_______________________________________________<br>
Libraries mailing list<br>
<a href="mailto:Libraries@haskell.org" target="_blank">Libraries@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries</a><br>
</blockquote></div>