Skip to content

Instantly share code, notes, and snippets.

@missingfaktor
Created January 24, 2012 07:58
Show Gist options
  • Select an option

  • Save missingfaktor/1668758 to your computer and use it in GitHub Desktop.

Select an option

Save missingfaktor/1668758 to your computer and use it in GitHub Desktop.
case class ColumnSpec[+A](
name: String,
identifier: Symbol,
/* more fields */
)
case class Computation[+A](sym: Symbol, expr: Expr[A]) {
override def toString = "%s := %s" format (sym, expr)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment