Reputation: 8601
I have an Iterator[JsValue] and need to convert that into a single JsValue. How can I do that in Play 2.1?
Upvotes: 1
Views: 552
In the end, it is just:
Json.toJson(scalaIterator)
Upvotes: 2