operator >> method

Result<T, E> operator >>(
  1. Result<T, E> transform(
    1. T
    )
)

Performs a bind operation and returns a new instance.

Implementation

Result<T, E> operator >>(
  Result<T, E> Function(T) transform,
) =>
    bind(transform);