Skip to content

Latest commit

 

History

History
58 lines (46 loc) · 1.68 KB

File metadata and controls

58 lines (46 loc) · 1.68 KB

Function: Attempt

Create an Attempt object with or without a given value so you can do fluent operations on the registered attempt value.

Method Signature

Attempt(value=[any])

Arguments

Argument Type Required Description Default
value any false The value to store as the attempt. This can be a value, or a closure/lambda that will be executed to get the value.

Examples

Related