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

Auto constructor for structs #62

Open
fogfish opened this issue Jan 26, 2025 · 0 comments
Open

Auto constructor for structs #62

fogfish opened this issue Jan 26, 2025 · 0 comments

Comments

@fogfish
Copy link
Owner

fogfish commented Jan 26, 2025

As a Engineer I want to automate simple constructors so that allocation of new type is an "arrow function: (A, B, C) => T" eliminates the boilerplate

type T struct {
  a A
  b B
  c C
}

var NewT = hseq.Arrow3[T, A, B, C]

As hypothesis we eliminate boilerplate:

func NewT(a A, b B, c C) *T {
  return &T{a:a, b:b, c:c)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant