Resolved another conflict
This commit is contained in:
		@@ -440,12 +440,11 @@ body {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
.content {
 | 
					.content {
 | 
				
			||||||
    padding: 0px 15px 0px 15px ;
 | 
					    padding: 0px 15px 0px 15px ;
 | 
				
			||||||
    text-align: justify;
 | 
					    text-align: left;
 | 
				
			||||||
    overflow: hidden;
 | 
					    overflow: hidden;
 | 
				
			||||||
    transition: max-height .2s ease-out;
 | 
					    transition: max-height .2s ease-out;
 | 
				
			||||||
    max-height: 0px;
 | 
					    max-height: 0px;
 | 
				
			||||||
    border-left: #c0c2c3 2px solid;
 | 
					    border-left: #c0c2c3 2px solid;
 | 
				
			||||||
    
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.collapsibleMini::before{
 | 
					.collapsibleMini::before{
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -29,7 +29,7 @@
 | 
				
			|||||||
                        </select><br>
 | 
					                        </select><br>
 | 
				
			||||||
                        <label for="versions">XPath version:</label>
 | 
					                        <label for="versions">XPath version:</label>
 | 
				
			||||||
                        <select name="versions" id="versions">
 | 
					                        <select name="versions" id="versions">
 | 
				
			||||||
                            <option class="hideable libxml xalan"value="1.0">1.0</option>
 | 
					                            <option class="hideable libxml xalan" value="1.0">1.0</option>
 | 
				
			||||||
                            <option class="hideable saxon" value="2.0">2.0</option>
 | 
					                            <option class="hideable saxon" value="2.0">2.0</option>
 | 
				
			||||||
                            <option class="hideable saxon" value="3.0">3.0</option>
 | 
					                            <option class="hideable saxon" value="3.0">3.0</option>
 | 
				
			||||||
                            <option class="hideable saxon" value="3.1">3.1</option>
 | 
					                            <option class="hideable saxon" value="3.1">3.1</option>
 | 
				
			||||||
@@ -52,9 +52,8 @@
 | 
				
			|||||||
                    onfocus="clearDefaultContent(this, 'Insert XML here');"></textarea>
 | 
					                    onfocus="clearDefaultContent(this, 'Insert XML here');"></textarea>
 | 
				
			||||||
                <br><br>
 | 
					                <br><br>
 | 
				
			||||||
                <label for="transformArea"><b>Insert your XPath:</b></label>
 | 
					                <label for="transformArea"><b>Insert your XPath:</b></label>
 | 
				
			||||||
                <textarea id="transformArea" name="transformArea"
 | 
					                <textarea id="transformArea" name="transformArea" class="bordered-field vertically-resizeable max-width"
 | 
				
			||||||
                    class="bordered-field vertically-resizeable max-width" rows="4"
 | 
					                    rows="4" onblur="setDefaultContent(this, 'Insert XPath expression here');"
 | 
				
			||||||
                    onblur="setDefaultContent(this, 'Insert XPath expression here');"
 | 
					 | 
				
			||||||
                    onfocus="clearDefaultContent(this,  'Insert XPath expression here');"></textarea>
 | 
					                    onfocus="clearDefaultContent(this,  'Insert XPath expression here');"></textarea>
 | 
				
			||||||
                <br>
 | 
					                <br>
 | 
				
			||||||
                <button id="requestButton" class="max-width block-label action-button active"
 | 
					                <button id="requestButton" class="max-width block-label action-button active"
 | 
				
			||||||
@@ -63,20 +62,36 @@
 | 
				
			|||||||
                <br><br>
 | 
					                <br><br>
 | 
				
			||||||
                <label for="resultArea"><b>Transform result:<span id="procinfo"></span></b></label>
 | 
					                <label for="resultArea"><b>Transform result:<span id="procinfo"></span></b></label>
 | 
				
			||||||
                <textarea disabled id="resultArea" name="resultArea"
 | 
					                <textarea disabled id="resultArea" name="resultArea"
 | 
				
			||||||
                    class="textarea-300 bordered-field vertically-resizeable max-width" style="margin-bottom: 50px;" rows="10" cols="100"></textarea>
 | 
					                    class="textarea-300 bordered-field vertically-resizeable max-width" style="margin-bottom: 50px;"
 | 
				
			||||||
 | 
					                    rows="10" cols="100"></textarea>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        <div class="tooltip tooltip-window rwd-hideable">
 | 
					        <div class="tooltip tooltip-window rwd-hideable">
 | 
				
			||||||
            <h2>What is XPath?</h2>
 | 
					            <h2>What is XPath?</h2>
 | 
				
			||||||
            <p>XPath is a query language used for selecting nodes from XML and processing them.<br>
 | 
					            <p>
 | 
				
			||||||
                It may perform operations on strings, numbers and boolean values.<br></p>
 | 
					                XPath is a query language used for selecting nodes from XML and processing them.<br>
 | 
				
			||||||
 | 
					                It may perform operations on strings, numbers and boolean values.<br>
 | 
				
			||||||
 | 
					            </p>
 | 
				
			||||||
 | 
					            <p>
 | 
				
			||||||
 | 
					            <h2>Semantics legend:</h2>
 | 
				
			||||||
 | 
					            <p>
 | 
				
			||||||
 | 
					                "+" - 1 or more elements
 | 
				
			||||||
 | 
					            </p>
 | 
				
			||||||
 | 
					            <p>
 | 
				
			||||||
 | 
					                "*" - 0 or more elements
 | 
				
			||||||
 | 
					            </p>
 | 
				
			||||||
 | 
					            <p>
 | 
				
			||||||
 | 
					                "?" - optional element
 | 
				
			||||||
 | 
					            </p>
 | 
				
			||||||
 | 
					            </p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            <span id="collapsible-lists">
 | 
					            <span id="collapsible-lists">
 | 
				
			||||||
                <div class="collapsible">
 | 
					                <div class="collapsible">
 | 
				
			||||||
                    <span>
 | 
					                    <span>
 | 
				
			||||||
                        <button class="section-button collapseTrigger" style="border: none">XPath 1.0 vs 2.0 vs 3.0 vs
 | 
					                        <button class="section-button collapseTrigger" style="border: none">
 | 
				
			||||||
                            3.1</button>
 | 
					                            XPath 1.0 vs 2.0 vs 3.0 vs 3.1
 | 
				
			||||||
 | 
					                        </button>
 | 
				
			||||||
                    </span>
 | 
					                    </span>
 | 
				
			||||||
                    <div class="content">
 | 
					                    <div class="content">
 | 
				
			||||||
                        <p><b>XPath 2.0 introduced many new features XQuery-cośtam:</b><br>
 | 
					                        <p><b>XPath 2.0 introduced many new features XQuery-cośtam:</b><br>
 | 
				
			||||||
@@ -136,33 +151,33 @@
 | 
				
			|||||||
                            <a href="#" onClick="return false;"
 | 
					                            <a href="#" onClick="return false;"
 | 
				
			||||||
                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:count()</code></a>
 | 
					                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:count()</code></a>
 | 
				
			||||||
                            <div class="content">
 | 
					                            <div class="content">
 | 
				
			||||||
                                    Returns the number of nodes in the node-set <br>
 | 
					                                Returns the number of nodes in the node-set <br>
 | 
				
			||||||
                                    <b>Arguments:</b>
 | 
					                                <b>Arguments:</b>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Type</th>
 | 
					                                        <th>Type</th>
 | 
				
			||||||
                                            <th>Description</th>
 | 
					                                        <th>Description</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>node-set</td>
 | 
					                                        <td>node-set</td>
 | 
				
			||||||
                                            <td>Node-set to count nodes in</td>
 | 
					                                        <td>Node-set to count nodes in</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><b>Examples: </b><br>
 | 
					                                </table><b>Examples: </b><br>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Expression</th>
 | 
					                                        <th>Expression</th>
 | 
				
			||||||
                                            <th>Result</th>
 | 
					                                        <th>Result</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>count(//b:book)</td>
 | 
					                                        <td>count(//b:book)</td>
 | 
				
			||||||
                                            <td>5</td>
 | 
					                                        <td>5</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>count(//person[@id>5])</td>
 | 
					                                        <td>count(//person[@id>5])</td>
 | 
				
			||||||
                                            <td>17</td>
 | 
					                                        <td>17</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><br>
 | 
					                                </table><br>
 | 
				
			||||||
                                    <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Node-Set-Functions" class="hyperlink" target="_blank">Node-Set-Functions</code></a>
 | 
					                                <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Node-Set-Functions" class="hyperlink" target="_blank">Node-Set-Functions</code></a>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
@@ -180,95 +195,95 @@
 | 
				
			|||||||
                            <a href="#" onClick="return false;"
 | 
					                            <a href="#" onClick="return false;"
 | 
				
			||||||
                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:local-name()</code></a>
 | 
					                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:local-name()</code></a>
 | 
				
			||||||
                            <div class="content">
 | 
					                            <div class="content">
 | 
				
			||||||
                                    Returns the local-name for the first node in the node-set <br>
 | 
					                                Returns the local-name for the first node in the node-set <br>
 | 
				
			||||||
                                    <b>Arguments:</b>
 | 
					                                <b>Arguments:</b>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Type</th>
 | 
					                                        <th>Type</th>
 | 
				
			||||||
                                            <th>Description</th>
 | 
					                                        <th>Description</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>node-set</td>
 | 
					                                        <td>node-set</td>
 | 
				
			||||||
                                            <td>Extract first node and return its local name</td>
 | 
					                                        <td>Extract first node and return its local name</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><b>Examples: </b><br>
 | 
					                                </table><b>Examples: </b><br>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Expression</th>
 | 
					                                        <th>Expression</th>
 | 
				
			||||||
                                            <th>Result</th>
 | 
					                                        <th>Result</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>local-name(//b:books)</td>
 | 
					                                        <td>local-name(//b:books)</td>
 | 
				
			||||||
                                            <td>b:book</td>
 | 
					                                        <td>b:book</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>local-name(//b:book)</td>
 | 
					                                        <td>local-name(//b:book)</td>
 | 
				
			||||||
                                            <td>b:title</td>
 | 
					                                        <td>b:title</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><br>
 | 
					                                </table><br>
 | 
				
			||||||
                                    <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Node-Set-Functions" class="hyperlink" target="_blank">Node-Set-Functions</code></a>
 | 
					                                <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Node-Set-Functions" class="hyperlink" target="_blank">Node-Set-Functions</code></a>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                            <a href="#" onClick="return false;"
 | 
					                            <a href="#" onClick="return false;"
 | 
				
			||||||
                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:namespace-uri()</code></a>
 | 
					                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:namespace-uri()</code></a>
 | 
				
			||||||
                            <div class="content">
 | 
					                            <div class="content">
 | 
				
			||||||
                                    Returns the namespace-uri for the first node in the node-set <br>
 | 
					                                Returns the namespace-uri for the first node in the node-set <br>
 | 
				
			||||||
                                    <b>Arguments:</b>
 | 
					                                <b>Arguments:</b>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Type</th>
 | 
					                                        <th>Type</th>
 | 
				
			||||||
                                            <th>Description</th>
 | 
					                                        <th>Description</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>node-set</td>
 | 
					                                        <td>node-set</td>
 | 
				
			||||||
                                            <td>Extract first node and return the namespace URI</td>
 | 
					                                        <td>Extract first node and return the namespace URI</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><b>Examples: </b><br>
 | 
					                                </table><b>Examples: </b><br>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Expression</th>
 | 
					                                        <th>Expression</th>
 | 
				
			||||||
                                            <th>Result</th>
 | 
					                                        <th>Result</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>namespace-uri(//b:book)</td>
 | 
					                                        <td>namespace-uri(//b:book)</td>
 | 
				
			||||||
                                            <td>http://www.book.com</td>
 | 
					                                        <td>http://www.book.com</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><br>
 | 
					                                </table><br>
 | 
				
			||||||
                                    <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Node-Set-Functions" class="hyperlink" target="_blank">Node-Set-Functions</code></a>
 | 
					                                <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Node-Set-Functions" class="hyperlink" target="_blank">Node-Set-Functions</code></a>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                            <a href="#" onClick="return false;"
 | 
					                            <a href="#" onClick="return false;"
 | 
				
			||||||
                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:name()</code></a>
 | 
					                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:name()</code></a>
 | 
				
			||||||
                            <div class="content">
 | 
					                            <div class="content">
 | 
				
			||||||
                                    Returns the name for the first node in the node-set <br>
 | 
					                                Returns the name for the first node in the node-set <br>
 | 
				
			||||||
                                    <b>Arguments:</b>
 | 
					                                <b>Arguments:</b>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Type</th>
 | 
					                                        <th>Type</th>
 | 
				
			||||||
                                            <th>Description</th>
 | 
					                                        <th>Description</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>node-set (Optional)</td>
 | 
					                                        <td>node-set (Optional)</td>
 | 
				
			||||||
                                            <td>Extract first node and return QName</td>
 | 
					                                        <td>Extract first node and return QName</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><b>Examples: </b><br>
 | 
					                                </table><b>Examples: </b><br>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Expression</th>
 | 
					                                        <th>Expression</th>
 | 
				
			||||||
                                            <th>Result</th>
 | 
					                                        <th>Result</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>name(//b:books/*)</td>
 | 
					                                        <td>name(//b:books/*)</td>
 | 
				
			||||||
                                            <td>b:book</td>
 | 
					                                        <td>b:book</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>name(//b:book/*)</td>
 | 
					                                        <td>name(//b:book/*)</td>
 | 
				
			||||||
                                            <td>b:title</td>
 | 
					                                        <td>b:title</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><br>
 | 
					                                </table><br>
 | 
				
			||||||
                                    <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Node-Set-Functions" class="hyperlink" target="_blank">Node-Set-Functions</code></a>
 | 
					                                <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Node-Set-Functions" class="hyperlink" target="_blank">Node-Set-Functions</code></a>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        </div>
 | 
					                        </div>
 | 
				
			||||||
@@ -322,46 +337,55 @@
 | 
				
			|||||||
                            <a href="#" onClick="return false;"
 | 
					                            <a href="#" onClick="return false;"
 | 
				
			||||||
                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:not()</code></a>
 | 
					                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:not()</code></a>
 | 
				
			||||||
                            <div class="content">
 | 
					                            <div class="content">
 | 
				
			||||||
                                    The not function returns true if its argument is false, and false otherwise. <br>
 | 
					                                The not function returns true if its argument is false, and false otherwise. <br>
 | 
				
			||||||
                                    <br>
 | 
					                                <br>
 | 
				
			||||||
                                    <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#function-not" class="hyperlink" target="_blank">Boolean-Functions</code></a>
 | 
					                                <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#function-not" class="hyperlink" target="_blank">Boolean-Functions</code></a>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                            <a href="#" onClick="return false;"
 | 
					                            <a href="#" onClick="return false;"
 | 
				
			||||||
                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:true()</code></a>
 | 
					                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:true()</code></a>
 | 
				
			||||||
                            <div class="content">
 | 
					                            <div class="content">
 | 
				
			||||||
                                    The true function returns true. <br>
 | 
					                                The true function returns true. <br>
 | 
				
			||||||
                                    <br>
 | 
					                                <br>
 | 
				
			||||||
                                    <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Boolean-Functions" class="hyperlink" target="_blank">Boolean-Functions</code></a>
 | 
					                                <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Boolean-Functions" class="hyperlink" target="_blank">Boolean-Functions</code></a>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                            <a href="#" onClick="return false;"
 | 
					                            <a href="#" onClick="return false;"
 | 
				
			||||||
                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:false()</code></a>
 | 
					                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:false()</code></a>
 | 
				
			||||||
                            <div class="content">
 | 
					                            <div class="content">
 | 
				
			||||||
                                    The true function returns false. <br>
 | 
					                                The true function returns false. <br>
 | 
				
			||||||
                                    <br>
 | 
					                                <br>
 | 
				
			||||||
                                    <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Boolean-Functions" class="hyperlink" target="_blank">Boolean-Functions</code></a>
 | 
					                                <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Boolean-Functions" class="hyperlink" target="_blank">Boolean-Functions</code></a>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                            <a href="#" onClick="return false;"
 | 
					                            <a href="#" onClick="return false;"
 | 
				
			||||||
                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:lang()</code></a>
 | 
					                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:lang()</code></a>
 | 
				
			||||||
                            <div class="content">
 | 
					                            <div class="content">
 | 
				
			||||||
                                    The lang function returns true or false depending on whether the language of the context node as specified by xml:lang attributes is the same as or is a sublanguage of the language specified by the argument string. The language of the context node is determined by the value of the xml:lang attribute on the context node, or, if the context node has no xml:lang attribute, by the value of the xml:lang attribute on the nearest ancestor of the context node that has an xml:lang attribute. If there is no such attribute, then lang returns false. If there is such an attribute, then lang returns true if the attribute value is equal to the argument ignoring case, or if there is some suffix starting with - such that the attribute value is equal to the argument ignoring that suffix of the attribute value and ignoring case. <br>
 | 
					                                The lang function returns true or false depending on whether the language of the context
 | 
				
			||||||
                                    <b>Arguments:</b>
 | 
					                                node as specified by xml:lang attributes is the same as or is a sublanguage of the
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                language specified by the argument string. The language of the context node is
 | 
				
			||||||
                                        <tr>
 | 
					                                determined by the value of the xml:lang attribute on the context node, or, if the
 | 
				
			||||||
                                            <th>Type</th>
 | 
					                                context node has no xml:lang attribute, by the value of the xml:lang attribute on the
 | 
				
			||||||
                                            <th>Description</th>
 | 
					                                nearest ancestor of the context node that has an xml:lang attribute. If there is no such
 | 
				
			||||||
                                        </tr>
 | 
					                                attribute, then lang returns false. If there is such an attribute, then lang returns
 | 
				
			||||||
                                        <tr>
 | 
					                                true if the attribute value is equal to the argument ignoring case, or if there is some
 | 
				
			||||||
                                            <td>string</td>
 | 
					                                suffix starting with - such that the attribute value is equal to the argument ignoring
 | 
				
			||||||
                                            <td>Language that will be looked for in context node</td>
 | 
					                                that suffix of the attribute value and ignoring case. <br>
 | 
				
			||||||
                                        </tr>
 | 
					                                <b>Arguments:</b>
 | 
				
			||||||
                                    </table><b>Examples: </b> Look W3C documentation<br>
 | 
					                                <table class="table-doc">
 | 
				
			||||||
 | 
					                                    <tr>
 | 
				
			||||||
 | 
					                                        <th>Type</th>
 | 
				
			||||||
 | 
					                                        <th>Description</th>
 | 
				
			||||||
 | 
					                                    </tr>
 | 
				
			||||||
 | 
					                                    <tr>
 | 
				
			||||||
 | 
					                                        <td>string</td>
 | 
				
			||||||
 | 
					                                        <td>Language that will be looked for in context node</td>
 | 
				
			||||||
 | 
					                                    </tr>
 | 
				
			||||||
 | 
					                                </table><b>Examples: </b> Look W3C documentation<br>
 | 
				
			||||||
                                <br>
 | 
					                                <br>
 | 
				
			||||||
                                    <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Boolean-Functions" class="hyperlink" target="_blank">Boolean-Functions</code></a>
 | 
					                                <code>W3C Documentation reference: <a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Boolean-Functions" class="hyperlink" target="_blank">Boolean-Functions</code></a>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
@@ -906,7 +930,6 @@
 | 
				
			|||||||
                
 | 
					                
 | 
				
			||||||
                        </div>
 | 
					                        </div>
 | 
				
			||||||
                    </div>
 | 
					                    </div>
 | 
				
			||||||
 | 
					 | 
				
			||||||
                    <div class="collapsible">
 | 
					                    <div class="collapsible">
 | 
				
			||||||
                        <span>
 | 
					                        <span>
 | 
				
			||||||
                            <button class="section-button collapseTrigger" style="border: none">Numeric</button>
 | 
					                            <button class="section-button collapseTrigger" style="border: none">Numeric</button>
 | 
				
			||||||
@@ -917,189 +940,205 @@
 | 
				
			|||||||
                            <a href="#" onClick="return false;"
 | 
					                            <a href="#" onClick="return false;"
 | 
				
			||||||
                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:number()</code></a>
 | 
					                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:number()</code></a>
 | 
				
			||||||
                            <div class="content">
 | 
					                            <div class="content">
 | 
				
			||||||
                                    The number function converts its argument to a number as follows:
 | 
					                                The number function converts its argument to a number as follows:
 | 
				
			||||||
                                    <ul>
 | 
					                                <ul>
 | 
				
			||||||
                                        <li>a string that consists of optional whitespace followed by an optional minus sign followed by a Number followed by whitespace is converted to the IEEE 754 number that is nearest (according to the IEEE 754 round-to-nearest rule) to the mathematical value represented by the string; any other string is converted to NaN</li>
 | 
					                                    <li>a string that consists of optional whitespace followed by an optional minus sign
 | 
				
			||||||
                                        <li>boolean true is converted to 1; boolean false is converted to 0</li>
 | 
					                                        followed by a Number followed by whitespace is converted to the IEEE 754 number
 | 
				
			||||||
                                        <li>a node-set is first converted to a string as if by a call to the string function and then converted in the same way as a string argument</li>
 | 
					                                        that is nearest (according to the IEEE 754 round-to-nearest rule) to the
 | 
				
			||||||
                                        <li>an object of a type other than the four basic types is converted to a number in a way that is dependent on that type</li>
 | 
					                                        mathematical value represented by the string; any other string is converted to
 | 
				
			||||||
                                    </ul>
 | 
					                                        NaN</li>
 | 
				
			||||||
 | 
					                                    <li>boolean true is converted to 1; boolean false is converted to 0</li>
 | 
				
			||||||
 | 
					                                    <li>a node-set is first converted to a string as if by a call to the string function
 | 
				
			||||||
 | 
					                                        and then converted in the same way as a string argument</li>
 | 
				
			||||||
 | 
					                                    <li>an object of a type other than the four basic types is converted to a number in
 | 
				
			||||||
 | 
					                                        a way that is dependent on that type</li>
 | 
				
			||||||
 | 
					                                </ul>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                    <b>Arguments:</b>
 | 
					                                <b>Arguments:</b>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Type</th>
 | 
					                                        <th>Type</th>
 | 
				
			||||||
                                            <th>Description</th>
 | 
					                                        <th>Description</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>object</td>
 | 
					                                        <td>object</td>
 | 
				
			||||||
                                            <td>The object to convert to a number</td>
 | 
					                                        <td>The object to convert to a number</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><b>Examples: </b><br>
 | 
					                                </table><b>Examples: </b><br>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Expression</th>
 | 
					                                        <th>Expression</th>
 | 
				
			||||||
                                            <th>Result</th>
 | 
					                                        <th>Result</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>number(10)</td>
 | 
					                                        <td>number(10)</td>
 | 
				
			||||||
                                            <td>10</td>
 | 
					                                        <td>10</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>number("")</td>
 | 
					                                        <td>number("")</td>
 | 
				
			||||||
                                            <td>NaN</td>
 | 
					                                        <td>NaN</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><br>
 | 
					                                </table><br>
 | 
				
			||||||
                                    <code><a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Number-Functions" class="hyperlink" target="_blank">W3C Documentation reference</code></a>
 | 
					                                <code><a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Number-Functions" class="hyperlink" target="_blank">W3C Documentation reference</code></a>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                            <a href="#" onClick="return false;"
 | 
					                            <a href="#" onClick="return false;"
 | 
				
			||||||
                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:sum()</code></a>
 | 
					                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:sum()</code></a>
 | 
				
			||||||
                            <div class="content">
 | 
					                            <div class="content">
 | 
				
			||||||
                                    The sum function returns the sum, for each node in the argument node-set, of the result of converting the string-values of the node to a number.<br>
 | 
					                                The sum function returns the sum, for each node in the argument node-set, of the result
 | 
				
			||||||
 | 
					                                of converting the string-values of the node to a number.<br>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                    <b>Arguments:</b>
 | 
					                                <b>Arguments:</b>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Type</th>
 | 
					                                        <th>Type</th>
 | 
				
			||||||
                                            <th>Description</th>
 | 
					                                        <th>Description</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>node-set</td>
 | 
					                                        <td>node-set</td>
 | 
				
			||||||
                                            <td>Node set to sum</td>
 | 
					                                        <td>Node set to sum</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><b>Examples: </b><br>
 | 
					                                </table><b>Examples: </b><br>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Expression</th>
 | 
					                                        <th>Expression</th>
 | 
				
			||||||
                                            <th>Result</th>
 | 
					                                        <th>Result</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>sum(/l:library/l:readerList/p:person/p:readerID)</td>
 | 
					                                        <td>sum(/l:library/l:readerList/p:person/p:readerID)</td>
 | 
				
			||||||
                                            <td>12444</td>
 | 
					                                        <td>12444</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><br>
 | 
					                                </table><br>
 | 
				
			||||||
                                    <code><a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Number-Functions" class="hyperlink" target="_blank">W3C Documentation reference</code></a>
 | 
					                                <code><a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Number-Functions" class="hyperlink" target="_blank">W3C Documentation reference</code></a>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                            <a href="#" onClick="return false;"
 | 
					                            <a href="#" onClick="return false;"
 | 
				
			||||||
                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:floor()</code></a>
 | 
					                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:floor()</code></a>
 | 
				
			||||||
                            <div class="content">
 | 
					                            <div class="content">
 | 
				
			||||||
                                    The floor function returns the largest (closest to positive infinity) number that is not greater than the argument and that is an integer.<br>
 | 
					                                The floor function returns the largest (closest to positive infinity) number that is not
 | 
				
			||||||
 | 
					                                greater than the argument and that is an integer.<br>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                    <b>Arguments:</b>
 | 
					                                <b>Arguments:</b>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Type</th>
 | 
					                                        <th>Type</th>
 | 
				
			||||||
                                            <th>Description</th>
 | 
					                                        <th>Description</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>node-set</td>
 | 
					                                        <td>node-set</td>
 | 
				
			||||||
                                            <td>Node set to sum</td>
 | 
					                                        <td>Node set to sum</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><b>Examples: </b><br>
 | 
					                                </table><b>Examples: </b><br>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Expression</th>
 | 
					                                        <th>Expression</th>
 | 
				
			||||||
                                            <th>Result</th>
 | 
					                                        <th>Result</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>floor(3.1)</td>
 | 
					                                        <td>floor(3.1)</td>
 | 
				
			||||||
                                            <td>4</td>
 | 
					                                        <td>4</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>floor(3.9)</td>
 | 
					                                        <td>floor(3.9)</td>
 | 
				
			||||||
                                            <td>4</td>
 | 
					                                        <td>4</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>floor(3.5)</td>
 | 
					                                        <td>floor(3.5)</td>
 | 
				
			||||||
                                            <td>4</td>
 | 
					                                        <td>4</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><br>
 | 
					                                </table><br>
 | 
				
			||||||
                                    <code><a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Number-Functions" class="hyperlink" target="_blank">W3C Documentation reference</code></a>
 | 
					                                <code><a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Number-Functions" class="hyperlink" target="_blank">W3C Documentation reference</code></a>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                            <a href="#" onClick="return false;"
 | 
					                            <a href="#" onClick="return false;"
 | 
				
			||||||
                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:ceiling()</code></a>
 | 
					                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:ceiling()</code></a>
 | 
				
			||||||
                            <div class="content">
 | 
					                            <div class="content">
 | 
				
			||||||
                                    The ceiling function returns the smallest (closest to negative infinity) number that is not less than the argument and that is an integer.<br>
 | 
					                                The ceiling function returns the smallest (closest to negative infinity) number that is
 | 
				
			||||||
 | 
					                                not less than the argument and that is an integer.<br>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                    <b>Arguments:</b>
 | 
					                                <b>Arguments:</b>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Type</th>
 | 
					                                        <th>Type</th>
 | 
				
			||||||
                                            <th>Description</th>
 | 
					                                        <th>Description</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>node-set</td>
 | 
					                                        <td>node-set</td>
 | 
				
			||||||
                                            <td>Node set to sum</td>
 | 
					                                        <td>Node set to sum</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><b>Examples: </b><br>
 | 
					                                </table><b>Examples: </b><br>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Expression</th>
 | 
					                                        <th>Expression</th>
 | 
				
			||||||
                                            <th>Result</th>
 | 
					                                        <th>Result</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>floor(3.1)</td>
 | 
					                                        <td>floor(3.1)</td>
 | 
				
			||||||
                                            <td>3</td>
 | 
					                                        <td>3</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>floor(3.9)</td>
 | 
					                                        <td>floor(3.9)</td>
 | 
				
			||||||
                                            <td>3</td>
 | 
					                                        <td>3</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>floor(3.5)</td>
 | 
					                                        <td>floor(3.5)</td>
 | 
				
			||||||
                                            <td>3</td>
 | 
					                                        <td>3</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><br>
 | 
					                                </table><br>
 | 
				
			||||||
                                    <code><a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Number-Functions" class="hyperlink" target="_blank">W3C Documentation reference</code></a>
 | 
					                                <code><a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Number-Functions" class="hyperlink" target="_blank">W3C Documentation reference</code></a>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                            <a href="#" onClick="return false;"
 | 
					                            <a href="#" onClick="return false;"
 | 
				
			||||||
                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:round()</code></a>
 | 
					                                class="hyperlink collapsible collapsibleMini collapseTrigger"><code>fn:round()</code></a>
 | 
				
			||||||
                            <div class="content">
 | 
					                            <div class="content">
 | 
				
			||||||
                                    The round function returns the number that is closest to the argument and that is an integer. If there are two such numbers, then the one that is closest to positive infinity is returned. If the argument is NaN, then NaN is returned. If the argument is positive infinity, then positive infinity is returned. If the argument is negative infinity, then negative infinity is returned. If the argument is positive zero, then positive zero is returned. If the argument is negative zero, then negative zero is returned. If the argument is less than zero, but greater than or equal to -0.5, then negative zero is returned.
 | 
					                                The round function returns the number that is closest to the argument and that is an
 | 
				
			||||||
 | 
					                                integer. If there are two such numbers, then the one that is closest to positive
 | 
				
			||||||
 | 
					                                infinity is returned. If the argument is NaN, then NaN is returned. If the argument is
 | 
				
			||||||
 | 
					                                positive infinity, then positive infinity is returned. If the argument is negative
 | 
				
			||||||
 | 
					                                infinity, then negative infinity is returned. If the argument is positive zero, then
 | 
				
			||||||
 | 
					                                positive zero is returned. If the argument is negative zero, then negative zero is
 | 
				
			||||||
 | 
					                                returned. If the argument is less than zero, but greater than or equal to -0.5, then
 | 
				
			||||||
 | 
					                                negative zero is returned.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                    <h4>NOTE</h4>
 | 
					                                <h4>NOTE</h4>
 | 
				
			||||||
                                    For these last two cases, the result of calling the round function is not the same as the result of adding 0.5 and then calling the floor function.<br>
 | 
					                                For these last two cases, the result of calling the round function is not the same as
 | 
				
			||||||
 | 
					                                the result of adding 0.5 and then calling the floor function.<br>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                                    <b>Arguments:</b>
 | 
					                                <b>Arguments:</b>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Type</th>
 | 
					                                        <th>Type</th>
 | 
				
			||||||
                                            <th>Description</th>
 | 
					                                        <th>Description</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>node-set</td>
 | 
					                                        <td>node-set</td>
 | 
				
			||||||
                                            <td>Node set to sum</td>
 | 
					                                        <td>Node set to sum</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><b>Examples: </b><br>
 | 
					                                </table><b>Examples: </b><br>
 | 
				
			||||||
                                    <table class="table-doc">
 | 
					                                <table class="table-doc">
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <th>Expression</th>
 | 
					                                        <th>Expression</th>
 | 
				
			||||||
                                            <th>Result</th>
 | 
					                                        <th>Result</th>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>floor(3.1)</td>
 | 
					                                        <td>floor(3.1)</td>
 | 
				
			||||||
                                            <td>3</td>
 | 
					                                        <td>3</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>floor(3.9)</td>
 | 
					                                        <td>floor(3.9)</td>
 | 
				
			||||||
                                            <td>4</td>
 | 
					                                        <td>4</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                        <tr>
 | 
					                                    <tr>
 | 
				
			||||||
                                            <td>floor(3.5)</td>
 | 
					                                        <td>floor(3.5)</td>
 | 
				
			||||||
                                            <td>3</td>
 | 
					                                        <td>3</td>
 | 
				
			||||||
                                        </tr>
 | 
					                                    </tr>
 | 
				
			||||||
                                    </table><br>
 | 
					                                </table><br>
 | 
				
			||||||
                                    <code><a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Number-Functions" class="hyperlink" target="_blank">W3C Documentation reference</code></a>
 | 
					                                <code><a href="https://www.w3.org/TR/1999/REC-xpath-19991116/#section-Number-Functions" class="hyperlink" target="_blank">W3C Documentation reference</code></a>
 | 
				
			||||||
                            </div>
 | 
					                            </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                        </div>
 | 
					                        </div>
 | 
				
			||||||
                    </div>
 | 
					                    </div>
 | 
				
			||||||
 | 
					 | 
				
			||||||
                </span>
 | 
					                </span>
 | 
				
			||||||
                <span name="collapse20">
 | 
					                <span name="collapse20">
 | 
				
			||||||
                    <div class="collapsible">
 | 
					                    <div class="collapsible">
 | 
				
			||||||
@@ -17343,7 +17382,7 @@
 | 
				
			|||||||
                hideList(document.getElementsByName("collapse20"));
 | 
					                hideList(document.getElementsByName("collapse20"));
 | 
				
			||||||
                hideList(document.getElementsByName("collapse30"));
 | 
					                hideList(document.getElementsByName("collapse30"));
 | 
				
			||||||
                showList(document.getElementsByName("collapse31"));
 | 
					                showList(document.getElementsByName("collapse31"));
 | 
				
			||||||
            } else if (filter == "collapse2.0"){
 | 
					            } else if (filter == "collapse2.0") {
 | 
				
			||||||
                document.getElementById("tooltipFunctionInfo").innerText = "XPath 2.0 functions";
 | 
					                document.getElementById("tooltipFunctionInfo").innerText = "XPath 2.0 functions";
 | 
				
			||||||
                hideList(document.getElementsByName("collapse10"));
 | 
					                hideList(document.getElementsByName("collapse10"));
 | 
				
			||||||
                showList(document.getElementsByName("collapse20"));
 | 
					                showList(document.getElementsByName("collapse20"));
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user