Przemek
Przemek

Reputation: 697

Practical Scala reference manual, for searching things like method names

Inspired by Haskell API Search Engine I begun to wonder what is the right way of finding names of things in Scala library. For example let's assume I need some string substation, like search and replace. StringOps has no such thing. Google doesn't help either, because these terms are very general, and manually traversing documentation isn't much fun.

My question is, where do experts look when they are seeking a particular function?

This should be practical enough to use it in everyday work.

Upvotes: 6

Views: 347

Answers (1)

pedrofurla
pedrofurla

Reputation: 12783

I do agree that a Hoogle like search engine for Scala would be great. Until there is such a tool, from another question:

I suggest using the Reference Index

You can see the whole thing at nightly Scaladoc

Upvotes: 4

Related Questions