I just started programming in Scala, and I noticed that the defeat of the TAB termination in the Scala REPL does not show all available methods.
eg. I want to appreciate this expression -
"Hello".intersect("World")
So i type
"Hello".inter
and press TAB and expect that "intersect" will display as a valid parameter, but it will not display.
Why is this so? I am sure this is not a mistake. I have no other examples yet.
source
share