Last active
January 9, 2019 11:23
-
-
Save jdegoes/6842d471e7b8849f90d5bb5644ecb3b2 to your computer and use it in GitHub Desktop.
Modeling higher-kinded types in a language without them.
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
class Option<A> { | |
protected Option() { } | |
} | |
interface App<F, A> { | |
F proof(); | |
} | |
class OptionF { | |
private OptionF() {} | |
private static class AppOption<A> implements App<OptionF, A> { | |
public final Option<A> value; | |
AppOption(Option<A> value) { | |
this.value = value; | |
} | |
public OptionF proof() { | |
return new OptionF(); | |
} | |
} | |
public static <A> App<OptionF, A> fromOption(Option<A> v) { | |
return new AppOption(v); | |
} | |
public static <A> Option<A> toOption(App<OptionF, A> v) { | |
return (((AppOption<A>)v).value); | |
} | |
} | |
interface Function<A, B> { | |
B apply(A a); | |
} | |
interface Functor<F> { | |
<A, B> App<F, B> map(Function<A, B> f, App<F, A> fa); | |
} |
@jdegoes, this one was easy 😄
public static void main(String[] args) {
OptionModule.inject(new OptionConsumer<String>() {
public <OptionF> String consume(OptionModule<OptionF> provider) {
provider.toOption(new App<OptionF, String>() {}); // ClassCastException
return "";
}
});
}
@TomasMikula even if it is obscure, if that does not impact client code and code can be generated it could have been a good solution.
A simple modification renders the original "safe up to null", again:
class Option<A> {
protected Option() { }
}
abstract class App<F, A> {
protected F proof();
}
class OptionF {
private OptionF() {}
private static class AppOption<A> extends App<OptionF, A> {
public final Option<A> value;
AppOption(Option<A> value) {
this.value = value;
}
protected OptionF proof() {
return new OptionF();
}
}
public static <A> App<OptionF, A> fromOption(Option<A> v) {
return new AppOption(v);
}
public static <A> Option<A> toOption(App<OptionF, A> v) {
return (((AppOption<A>)v).value);
}
}
interface Function<A, B> {
B apply(A a);
}
interface Functor<F> {
<A, B> App<F, B> map(Function<A, B> f, App<F, A> fa);
}
@jdegoes, I don't think so. My original counter-example still produce a ClassCastException:
https://gist.github.com/jdegoes/6842d471e7b8849f90d5bb5644ecb3b2#gistcomment-1818237
Damn access methods. If only Java had protected[this]
! Or an abstract private method that could be implemented and seen only by subclasses...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OK, I'm not going to claim it's pretty... 😆