Skip to content

Instantly share code, notes, and snippets.

@penryu
Last active April 1, 2020 22:21
Show Gist options
  • Save penryu/74940cdf49abfaf5b432924378821c51 to your computer and use it in GitHub Desktop.
Save penryu/74940cdf49abfaf5b432924378821c51 to your computer and use it in GitHub Desktop.
import java.util.List;
public class Util {
public static void f(List<Double> x) { }
public static void f(List<Long> x) { }
}
object Util {
def f(x: List[Int]) = x
def f(x: List[Double]) = x
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment