Created
June 25, 2019 08:09
-
-
Save zarinfam/b61990fa9c247d2b4d4eb5e0ea8a34a3 to your computer and use it in GitHub Desktop.
Created with Copy to Gist
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
final class Functions { | |
static <T> Tuple2<T, T> twoEmpties(Empty<T> empty) { | |
return Tuple.of(empty.empty(), empty.empty()); | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment