Created
February 9, 2020 15:10
-
-
Save made2591/1dd2798c3ae057c0df01b623c3918af4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
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