I’m working on a query parser and I’m wondering if it’s possible to send a parsed string as a labelled arguments. So for example if we have
"?id=5"
then the query parser would parse “id” and the value 5. Would it be possible then to convert that to send it in as a labelled argument for a function so that f(~id=5)? and if the string wouldn’t match any arguments then it would be ignored.