I am new to Scala and trying to use Casbah toolkit for MongoDb. Casbah tutorial says:
"...This should allow a more fluid Syntax to working with Mongo. The DB object also provides an apply() for getting Collections so you can freely chain them:"
scala> val mongoColl = mongoClient("casbah_test")("test_data")
mongoColl: com.mongodb.casbah.MongoCollection = MongoCollection()
Where can I read about Scala constructs such as mongoClient("casbah_test")("test_data") ? Thanks!