Represents the default case in a switch-like structure, with a return value of type R. This case is executed if none of the other cases match.
R
The type of the return value from the operation.
A flag to indicate that this is the default case.
The function to execute when the default case is selected, returning a value of type R.
Represents the default case in a switch-like structure, with a return value of type
R. This case is executed if none of the other cases match.