blob: 66d2460c2e410ad71602d7041ec9e8b5aeb4a00c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
---
title: 'false'
slug: Web/XPath/Functions/false
tags:
- XSLT
- XSLT_Reference
translation_of: Web/XPath/Functions/false
---
<p>{{ XsltRef() }}</p>
<p><code>false</code> 関数は真偽値 false を返します。</p>
<h3 id="Syntax">構文</h3>
<pre class="eval">false()
</pre>
<h3 id="Returns">返値</h3>
<p>真偽値 <code>false</code> です。</p>
<h3 id="Notes">注</h3>
<p>この関数は比較の一部として役立ちます。</p>
<pre class="eval"><xsl:if test="boolean((1 &gt; 2) = false())">
The expression evaluates as true
</xsl:if>
</pre>
<h3 id="Defined">定義</h3>
<p><a href="https://www.w3.org/TR/xpath#function-false">XPath 1.0 4.3</a></p>
<h3 id="Gecko_support">Gecko での対応</h3>
<p>対応済み。</p>
|