Skip to content

Instantly share code, notes, and snippets.

@gszeliga
Created February 18, 2015 22:15
Show Gist options
  • Save gszeliga/9b57869240e570525139 to your computer and use it in GitHub Desktop.
Save gszeliga/9b57869240e570525139 to your computer and use it in GitHub Desktop.
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