Skip to content

Instantly share code, notes, and snippets.

@arturaz
Created October 30, 2017 13:24
Show Gist options
  • Save arturaz/18dde12073a5ced71147ea32eb8125ab to your computer and use it in GitHub Desktop.
Save arturaz/18dde12073a5ced71147ea32eb8125ab to your computer and use it in GitHub Desktop.
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