map<R extends Object> abstract method

  1. @override
Option<R> map<R extends Object>(
  1. @noFutures R noFutures(
    1. T value
    )
)
override

Transforms the contained value using the mapper function noFutures while preserving the Outcome's structure.

Implementation

@override
Option<R> map<R extends Object>(@noFutures R Function(T value) noFutures);