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

add join operator to IPure<T> #11

Open
fogfish opened this issue Oct 31, 2019 · 0 comments
Open

add join operator to IPure<T> #11

fogfish opened this issue Oct 31, 2019 · 0 comments

Comments

@fogfish
Copy link
Owner

fogfish commented Oct 31, 2019

The lib supports stack construction using following syntax

const app = new cdk.App()
const stack = (): cdk.StackProps => ({})
pure.iaac(cdk.Stack)(stack)
  .effect(x => {
    pure.join(x, RestApi)
    pure.join(x, LogGroup)
    pure.join(x, CodeBuildEvents)
  })
app.synth()

The code become cleaner if join is part of IPure

pure.iaac(cdk.Stack)(stack)
  .join(RestApi)
  .join(LogGroup)
  .join(CodeBuildEvents)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant