aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/xpath/functions/ceiling/index.html
blob: 7a45cc4e72c99838ce389df09f623dbdd7d0947a (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
38
39
40
41
---
title: ceiling
slug: Web/XPath/Functions/ceiling
tags:
  - XSLT
  - XSLT_Reference
translation_of: Web/XPath/Functions/ceiling
---
<p>{{ XsltRef() }}</p>

<p><code>ceiling</code> 関数は小数を評価し、その小数以上の最も小さい整数を返します。</p>

<h3 id="Syntax">構文</h3>

<pre class="eval">ceiling(<em>number</em> )
</pre>

<h3 id="Arguments">引数</h3>

<dl>
 <dt><code><em>number</em></code></dt>
 <dd>評価する数値。</dd>
</dl>

<h3 id="Returns">返値</h3>

<p><code><em>number</em></code> 以上の最も近い整数。</p>

<p>例:</p>

<p><code>    ceiling (<em>5.2</em>)</code> = <var>6</var></p>

<p><code>    ceiling (<em>-5.2</em>)</code> = <var>-5</var></p>

<h3 id="Defined">定義</h3>

<p><a class="external" href="http://www.w3.org/TR/xpath#function-ceiling">XPath 1.0 4.4</a></p>

<h3 id="Gecko_support">Gecko での対応</h3>

<p>対応済み。</p>