Wonder-Technology/Wonder.js

View on GitHub
src/construct/domain_layer/library/structure/ResultMost.res

Summary

Maintainability
Test Coverage
let rec sequenceMostM = result =>
  result->Result.either(
    stream => stream->WonderBsMost.Most.map(Result.succeed, _),
    stream => stream->WonderBsMost.Most.map(Result.failWith, _),
  )