Skip to content

Instantly share code, notes, and snippets.

@gszeliga
Created May 22, 2014 20:54
Show Gist options
  • Save gszeliga/3da2a0f3406e3c5ab694 to your computer and use it in GitHub Desktop.
Save gszeliga/3da2a0f3406e3c5ab694 to your computer and use it in GitHub Desktop.
def ~> [U](q: => Parser[U]): Parser[U] = { lazy val p = q // lazy argument
(for(a <- this; b <- p) yield b).named("~>")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment