Skip to content

Instantly share code, notes, and snippets.

@made2591
Created February 9, 2020 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save made2591/1dd2798c3ae057c0df01b623c3918af4 to your computer and use it in GitHub Desktop.
Save made2591/1dd2798c3ae057c0df01b623c3918af4 to your computer and use it in GitHub Desktop.
...
func pipeline(x *Log, fs ...Increment) *Log {
for _, f := range fs {
x = bind(x, f)
}
return x
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment