# README
Retry Package
The start of musings on a replacement for the Terraform Plugin SDK v2 helper/retry
package.
Example Usage
for r := retry.Begin(); r.Continue(ctx); {
if doSomething() {
break
}
}
# Functions
Begin returns a new retry loop configured with the default options.
BeginWithOptions returns a new retry loop configured with the provided options.
Operation returns a new wrapper on top of the specified function.