ok<T, E> function

Result<T, E> ok<T, E>(
  1. T okValue
)

Success Result

Implementation

Result<T, E> ok<T, E>(T okValue) => Result.ok(okValue);