I’m glad this is picking up! Particularly, thanks to everyone for the great suggestions and discussion and for @rae for posting this here
@atravers, that’s amazing, thanks for all the references! I’ll study them!
I’ll try answering some points inline below…
That’s a good question indeed! That seems to enable one to catch calls to error
(or other exceptions) purely. I’m inclined in calling f
pure indeed, but its weird that f undefined == False
. I guess that’s precisely the type of question I believe we have to answer as part of shedding light to unsafePerformIO
.
I don’t think I can prove that. What is “equal” supposed to mean if we’re running an IO computation under the hood?
Ok, fair. But it could have been implemented in parallel. I’d hope that future compilers would detect that fmap f
can always be executed in parallel for any functor; there’s no dependency between the calls of f
.
But it would never the equal to pure True
(not even bringing it up the problem of defining “equal”). We brought IO
into the domain of reasoning, we’re now doomed to have to reason about the side-effects that are performed or bring in a different equivalence relation.
Precisely! That’s the question that brought all of this up for me. Hence, I’m looking into understanding what such a proof would look like, even if just informally. There’s tremendous value in pure APIs.
Memory can also run out making allocation in bytestring
fail too…
I’d encourage trying to write proofs for monadic code versus trying to write proofs for pure code. I believe this complexity becomes much more present when we try to reason about the correctness of our programs. Nevertheless, even for programming exclusively, I’d bring up again how much nicer the bytestring
API is, when compared to a hypothetical monadic alternative.