I'm adding generic extension to my Scala 2.11.6, Play 2.3.8 based project, based on Request.queryString
/**
* The parsed query string.
*/
def queryString: Map[String, Seq[String]]
Lets say I have ?param=A¶m=B
. The order in which query returns A & B affects the result, of calculations.
Does play guarantee order of A & B?
In other words do I need to handle order of query parameters explicitly, or it's part of the system contract.