I have just started programming in Scala, and I noticed that hitting TAB-completion in the Scala REPL doesn't show all the available methods.
E.g. I want to evaluate this expression -
"Hello".intersect("World")
So, I type
"Hello".inter
and press TAB and expect 'intersect' to be shown as a valid option, but it is not shown.
Why is this so? I am sure that it is not a bug. I don't have any other examples yet.