Created
October 30, 2017 13:24
-
-
Save arturaz/18dde12073a5ced71147ea32eb8125ab 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
Fn<ImmutableArray<KeyValuePair<string, string>>.Builder, Act < string, string>> createAppend = | |
builder => (key, value) => { | |
qs.append(key, value); | |
builder.Add(F.kv(key, value)); | |
}; | |
var appendTag = createAppend(tags); | |
var appendExtra = createAppend(extras); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment