Skip to content

Instantly share code, notes, and snippets.

@stasimus
Created October 9, 2018 21:19
Show Gist options
  • Save stasimus/3a41b2e95155d0103a819354f0df79b5 to your computer and use it in GitHub Desktop.
Save stasimus/3a41b2e95155d0103a819354f0df79b5 to your computer and use it in GitHub Desktop.
/*
Semigroup's mapN for Pair
*/
fun <A, B> Pair<A?, A?>.mapN(func: (A, A) -> B?): B? =
this.first?.let { a1 -> this.second?.let { a2 -> func(a1, a2) } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment