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

Core: let on, then and orElse accept varargs #4486

Closed
slandelle opened this issue Dec 6, 2023 · 0 comments
Closed

Core: let on, then and orElse accept varargs #4486

slandelle opened this issue Dec 6, 2023 · 0 comments

Comments

@slandelle
Copy link
Member

So users can directly write:

repeat(5).on(
   chain1,
   chain2
)

instead of

repeat(5).on(
  exec(
    chain1,
    chain2
  )
)

or

repeat(5).on(
    chain1
      .exec(chain2)
  )
)
@slandelle slandelle self-assigned this Dec 6, 2023
@slandelle slandelle added this to the 3.10.0 milestone Dec 6, 2023
@slandelle slandelle added Java and removed Java labels Dec 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

No branches or pull requests

1 participant