and [http://www.w3.org/TR/xpath-30/ XPath 3.0] Recommendations
that have already been implemented in BaseX.
==EQNames==
{{Mark|Introduced with Version 7.1:}} A QName can now be directly prefixed with its namespace URI, which will be enclosed in quotes and followed by a colon:
'''Examples:'''
* <code><nowiki>"http://www.w3.org/2005/xpath-functions/math":pi()</nowiki></code> returns the number π
* <code>"java:java.io.FileOutputStream":new("output")</code> creates a new Java file output stream
==Namespace Constructors==
{{Mark|Introduced with Version 7.1:}} New namespaces can now be created via computed namespace constructors.
<pre class="brush:xquery">
element node { namespace pref { 'http://url.org/' } }
</pre>
==Group By==