How to search for methods in Scaladoc, globally?

前端 未结 3 985
情话喂你
情话喂你 2021-02-18 18:54

Is there any possibility that i can search for a method in a class, trait or object via scala doc, globally? Example: I have a method name and I don\'t know which class it belon

3条回答
  •  佛祖请我去吃肉
    2021-02-18 19:24

    I don't think there is a general, built-in method. So if the scaladoc is online I use my friend Google. For instance to search for a method called left in the scala API, I use the query:

    "def left" site:http://www.scala-lang.org/api/current/
    

    If it's on my hard disk I use grep.

提交回复
热议问题