filterMap<Z> abstract method
- Option<
Z> f(- T t
override
If this Option is a Some and calling f
returns Some, then return this Some.
Otherwise return None.
Implementation
@override
Option<Z> filterMap<Z>(Option<Z> Function(T t) f);