unwrap method
T
unwrap()
Returns the contained Some value, consuming the self value.
Implementation
T unwrap() {
return v as T;
}
Returns the contained Some value, consuming the self value.
T unwrap() {
return v as T;
}