如何从解释器中找到 Scala 文档 api
How to find scala documentation api from interpreter
在Python
我们可以做到
help(function)
或
help(class)
查找特定 function
或 class
的文档
我们如何在 Scala
中从 scala interpreter
做到这一点?
在Python
我们可以做到
help(function)
或
help(class)
查找特定 function
或 class
我们如何在 Scala
中从 scala interpreter
做到这一点?