Function std.algorithm.comparison.castSwitch
Executes and returns one of a collection of handlers based on the type of the switch object.
						
					
				The first choice that switchObject can be casted to the type
of argument it accepts will be called with switchObject casted to that
type, and the value it'll return will be returned by castSwitch.
If a choice's return type is void, the choice must throw an exception, unless all the choices are void. In that case, castSwitch itself will return void.
Throws
If none of the choice matches, a SwitchError will be thrown.  SwitchError will also be thrown if not all the choices are void and a void
choice was executed without throwing anything.
Parameters
Returns
The value of the selected choice.
Note
castSwitch can only be used with object types.
Example
import stdExample
Using with void handlers:
import std