transf<R extends Object> abstract method
Transforms the Monad's generic type from T
to R
.
Uses the transformer function noFuturesAllowed
if provided, otherwise
attempts a direct cast.
Implementation
@override
Result<R> transf<R extends Object>([
@noFuturesAllowed R Function(T e)? noFuturesAllowed,
]);