Created
February 18, 2015 22:15
-
-
Save gszeliga/9b57869240e570525139 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
trait BuildStep[+E, +A] | |
case class Continue[T](v: T) extends BuildStep[Nothing, T] | |
case class Failure[E](e: E) extends BuildStep[E, Nothing] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment