extend<Z> abstract method
- Z f(
- Option<
T> t
- Option<
override
Change the value of Option from type T
to type Z
based on the
value of Option<T>
using function f
.
Implementation
@override
Option<Z> extend<Z>(Z Function(Option<T> t) f);