matchOk<R> abstract method

R? matchOk<R>(
  1. R okop(
    1. T
    )
)

Invokes the okop if the result is Ok, otherwise does nothing.

Implementation

R? matchOk<R>(R Function(T) okop);