motif icon indicating copy to clipboard operation
motif copied to clipboard

Scala-like pattern matching for Java 8

Results 4 motif issues
Sort by recently updated
recently updated
newest added

The code-generation branch is already beginning to add the ability to generate all of the case permutations for a given type (e.g. `Tuple2` or `List`) so that they don't have...

enhancement

Let's consider the following naive example: ``` java static interface Map_ { } static class EmptyMap_ implements Map_ { } static class InsertAssoc_ implements Map_ { public final Pair pair;...