# Functions
Do retries provided function until maxTime is reached, using provided interval as a delay and returning true if it's successfully completed.
Do2 retries provided until maxTime is reached, doubling the delay interval until it reaches the maxInterval and returning true if it's successfully completed.
# Type aliases
Func is the function to retry returning true if it's successfully completed.