Yes, I know it\'s considered lazy by the non-Pythonistas. The reason I ask is that documentation is still woefully lacking in many Scala libraries (e.g. Scala-dbc, but that\
You might want something like the following which would give you what you need. In this case, it operates on a String, obviously.
val testStr = "Panda" testStr.getClass.getMethods.foreach(println)
Does that work?