Skip to content

Instantly share code, notes, and snippets.

@Jacoby6000
Last active October 23, 2017 16:35
Show Gist options
  • Save Jacoby6000/637a6d8497eccad6326d09663f469ba8 to your computer and use it in GitHub Desktop.
Save Jacoby6000/637a6d8497eccad6326d09663f469ba8 to your computer and use it in GitHub Desktop.
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