Type Parameter Power-Up! Variance, Bounds, and Inference by Chris Phelps

preview_player
Показать описание
This video was recorded at Scala Days New York 2018

More information and the abstract can be found here:
Рекомендации по теме
Комментарии
Автор

implicitly is not a keyword, it just a *very* simple function which slurps implicits out of the ether:


def implicitly[T](implicit e: T): T = e

polypus