Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reduce.parallel #175

Open
richytong opened this issue Nov 20, 2020 · 0 comments
Open

reduce.parallel #175

richytong opened this issue Nov 20, 2020 · 0 comments
Labels
enhancement New feature or request

Comments

@richytong
Copy link
Collaborator

Reducer<T> = (any, T)=>Promise|any
Foldable<T> = Iterable<T>|AsyncIterable<T>|{ reduce: Reducer<T>=>any }|Object<T>

reduce.parallel(
  reducer (any, any)=>Promise|any,
  result any,
)(value Foldable) -> Promise|any

reduce in parallel. Reduction happens by order of asynchronous resolution.

reduce.parallel(
  async (total, number) => {
    await Promise(resolve => setTimeout(resolve, number))
    return total + number
  },
  0,
)([1, 2, 3]).then(console.log) // 6
@richytong richytong added the enhancement New feature or request label Nov 20, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant