Is there a lazy version of `IO.raiseError<T>...
# arrow
s
Is there a lazy version of `IO.raiseError<T>`() as well ? Or I should do
IO.lazy.flatMap { IO.raiseError(e) }
, because raiseError also has same implementation like IO.just(),
RaiseError(e)
which is a data class, so I am guessing this, also, will execute immediately ?