unwrap : Try(a, err) -> a Unwrap a Try value, crashing with a message if the Try is an Err. This is unsafe and should only be used when you are certain that the Try can never be an Err, or in expect statements. unwrap(Ok(5)) == 5