We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc888bc commit 46607daCopy full SHA for 46607da
src/main/java/lambdasinaction/chap13/Combinators.java
@@ -16,5 +16,4 @@ static <A,B,C> Function<A,C> compose(Function<B,C> g, Function<A,B> f) {
16
static <A> Function<A,A> repeat(int n, Function<A,A> f) {
17
return n==0?x->x : compose(f, (Function<A,A>) repeat(n-1, f));
18
}
19
-
20
0 commit comments