我可以通过指定隐式转换来配置 scaladoc 以包含来自隐式转换的方法吗?
例如给定
trait Foo
object Operations {
implicit class FooOps(val f: Foo) extends AnyVal {
def bar = 33
}
}
我可以在 scaladocbar
的文档中包含扩展方法Foo
吗?
我可以通过指定隐式转换来配置 scaladoc 以包含来自隐式转换的方法吗?
例如给定
trait Foo
object Operations {
implicit class FooOps(val f: Foo) extends AnyVal {
def bar = 33
}
}
我可以在 scaladocbar
的文档中包含扩展方法Foo
吗?
看起来是这样(我还没有尝试过):
% scladoc -help
Usage: scaladoc <options> <source files>
where possible scaladoc options include:
...
-implicits Document members inherited by implicit conversions.
-implicits-hide:<implicit(s)> Hide the members inherited by the given comma separated, fully qualified implicit conversions. Add dot (.) to include default conversions.
-implicits-show-all Show members inherited by implicit conversions that are impossible in the default scope. (for example conversions that require Numeric[String] to be in scope)
...