Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 513
Przemek Avatar asked Jan 25 '11 21:01

Przemek


1 Answers

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

like image 132
pedrofurla Avatar answered Nov 11 '22 17:11

pedrofurla