QueryArgs returns query args. The returned args are valid until the next URI method call.
()
| 928 | // |
| 929 | // The returned args are valid until the next URI method call. |
| 930 | func (u *URI) QueryArgs() *Args { |
| 931 | u.parseQueryArgs() |
| 932 | return &u.queryArgs |
| 933 | } |
| 934 | |
| 935 | func (u *URI) parseQueryArgs() { |
| 936 | if u.parsedQueryArgs { |