Skip to content

Instantly share code, notes, and snippets.

@chirino
Created March 14, 2012 12:04
Show Gist options
  • Save chirino/2036034 to your computer and use it in GitHub Desktop.
Save chirino/2036034 to your computer and use it in GitHub Desktop.
Tuple3 {
inline def build<T>(out:Appender<T>):T = {
out.append(this._1)
out.append(this._2)
out.append(this._3)
out.build()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment