Last active
October 23, 2017 16:35
-
-
Save Jacoby6000/637a6d8497eccad6326d09663f469ba8 to your computer and use it in GitHub Desktop.
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
type F1 = (A1, P1) => A2 | |
type F2 = (A2, P2) => A3 | |
type F3 = (A3, P3) => A4 | |
def foo(a1: A1): P1 => P2 => P3 => A4 = p1: P1 => p2: P2 => p3: P3 => F3(F2(F1(a1, p1), p2), p3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment