let<R> method

Option<R> let<R>(
  1. Option<R> f(
    1. T it
    )
)

Implementation

Option<R> let<R>(Option<R> Function(T it) f) => f(this);