Pass two lambdas to the match function. The first one handles the success case and the second one handles the failure case.
Calling match will execute the try function if it has not already done so
lamda that handles the success case
lambda that handles the exception
Whatever the lambas return
See Implementation
Pass two lambdas to the match function. The first one handles the success case and the second one handles the failure case.
Calling match will execute the try function if it has not already done so