bind<R> method
R
bind<R>()
Implementation
R bind<R>() {
return this is Ok<T>
? (this as Ok<T>)._value as R
: (this as Err<Exception>)._value as R;
}
R bind<R>() {
return this is Ok<T>
? (this as Ok<T>)._value as R
: (this as Err<Exception>)._value as R;
}