是否可以通过指定隐式转换将scaladoc配置为包括隐式转换的方法?
例如。给定
trait Foo
object Operations {
implicit class FooOps(val f: Foo) extends AnyVal {
def bar = 33
}
}
我可以在
bar
的文档中使scaladoc包含扩展方法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)
...
关于scala - 配置scaladoc以包括扩展方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21406207/