Is there a safe version of unsafeRunTimed? Somethi...
# arrow
m
Is there a safe version of unsafeRunTimed? Something that will run an IO action with a timeout but return an IO<Option<A>>?
You can combine it with
attempt
to turn it into
Option
or you could write a simple operator based of
sleep
yourself if you care enough to avoid the exception 🙂
m
Thanks!