Created
April 2, 2012 22:01
-
-
Save missingfaktor/2287524 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
scala> type AndThen[F[_], G[_]] = { | |
| type Apply[A] = G[F[A]] | |
| } | |
defined type alias AndThen | |
scala> val x: (List AndThen Set)#Apply[Int] = null | |
x: scala.collection.immutable.Set[List[Int]] = null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very awesome stuff, easy for slides, and easy to grok.