Reputation: 6781
Scala API 2.10.2 shows indexes for some packages such as scala.util.parsing.json and scala.xml
Scala API 2.11.8 doesn't show those packages. But the code does exist in Scala 2.11.
scala.util.parsing.json.JSONArray(List("Banana", "Yogurt", "Coffee"))
//res0: scala.util.parsing.json.JSONArray = ["Banana", "Yogurt", "Coffee"]
Is there anyway to get the complete Scaladoc API for 2.11.x?
Upvotes: 0
Views: 55
Reputation: 39577
Yes, separate modules API is available at the doc site such as xml here.
Upvotes: 1