Can I configure scaladoc to include methods from implicit conversions by specifying the implicit conversion?
E.g. given
trait Foo
object Operations {
implicit class FooOps(val f: Foo) extends AnyVal {
def bar = 33
}
}
Can I make scaladoc include extension method bar
in the documentation of Foo
?
It appears so (I've not tried it yet):