Thinking about this, adapted from a tweet that was meant to infuriate
if e then true else false
Because it's equivalent to e
ofc, but really it's a case of:
if e then C[true] else C[false] === C[e]
But also:
if e then (if e then e1 else e2) else (if e then e3 else e4) === if e then e1 else e4
Or generally:
if e then C1[e] else C2[e] === if e then C1[true] else C2[false]
And finally:
C[if e then e1 else e2] === if e then C[e1] else C[e2]
✨ eta laws ✨
But why are there three of them? Are there more that I'm missing? Where do they come from? These and more than these
Oh I refound the tweet https://twitter.com/hmemcpy/status/1363871098824179714