Skip to content

Instantly share code, notes, and snippets.

@manishkkatoch
Last active January 1, 2019 16:48
Show Gist options
  • Save manishkkatoch/6778a620798d5e9410738e62adb4a240 to your computer and use it in GitHub Desktop.
Save manishkkatoch/6778a620798d5e9410738e62adb4a240 to your computer and use it in GitHub Desktop.
object syntax {
implicit class RichDataSet[A](dataSet: Dataset[A]) {
val enriched = this
def apply[K](column: Witness.Lt[Symbol])(implicit
exists: PropertyExists[A, column.T, K]): Column =
new Column(column.value.name)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment