static PairS decodeHQueryParam(S s) { int i = indexOf(s, '='); ret i <= 0 ? null : pair(urldecode(s.substring(0, i)), urldecode(s.substring(i+1))); }