Skip to content

Instantly share code, notes, and snippets.

@brurucy
Created February 9, 2023 21:20
Show Gist options
  • Save brurucy/fadbc59a284bcd78eccf0fac441871a4 to your computer and use it in GitHub Desktop.
Save brurucy/fadbc59a284bcd78eccf0fac441871a4 to your computer and use it in GitHub Desktop.
memoir
type Option func(*Obj)
func Foo(foo int) Option {
return func(obj *Obj) {
obj.foo = foo
}
}
func Bar(bar string) Option {
return func(obj *Obj) {
obj.bar = bar
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment