Skip to content

Commit a3a0ae8

Browse files
committed
Converted methods on F to F1Functions
1 parent 659f728 commit a3a0ae8

File tree

21 files changed

+912
-895
lines changed

21 files changed

+912
-895
lines changed

core/src/main/java/fj/Equal.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public Boolean f(final A a1) {
8080
* @return A new equal.
8181
*/
8282
public <B> Equal<B> comap(final F<B, A> f) {
83-
return equal(f.<Boolean>andThen().o(this.f).o(f));
83+
return equal(F1Functions.o(F1Functions.o(F1Functions.andThen(f), this.f), f));
8484
}
8585

8686
/**

0 commit comments

Comments
 (0)