Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save FabioPinheiro/d9dd5078074f9d469de31c31576453ba to your computer and use it in GitHub Desktop.
Save FabioPinheiro/d9dd5078074f9d469de31c31576453ba to your computer and use it in GitHub Desktop.
Access to companion object of Foo via implicit resolution
trait Companion[T] {
type C
def apply() : C
}
object Companion {
implicit def companion[T](implicit comp : Companion[T]) = comp()
}
object TestCompanion {
trait Foo
object Foo {
def bar = "wibble"
// Per-companion boilerplate for access via implicit resolution
implicit def companion = new Companion[Foo] {
type C = Foo.type
def apply() = Foo
}
}
import Companion._
val fc = companion[Foo] // Type is Foo.type
val s = fc.bar // bar is accessible
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment