Skip to content

Instantly share code, notes, and snippets.

@milessabin
Created January 30, 2012 17:47
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save milessabin/1705644 to your computer and use it in GitHub Desktop.
Save milessabin/1705644 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