Skip to content

Commit 679e98a

Browse files
Preview PR 1559: d3c1b2354d6125
1 parent a52a9fb commit 679e98a

3 files changed

Lines changed: 10 additions & 18 deletions

File tree

gen/pull/1559/PREVIEW.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# PR [\#1559](https://github.com/cpprefjp/site/pull/1559) プレビュー
2-
- ⌚ 更新時刻: 2026-01-12 09:44:45 JST
2+
- ⌚ 更新時刻: 2026-01-12 11:30:26 JST
33
- 🔍 [プレビュー (HTML)](https://cpprefjp.github.io/site/gen/pull/1559)
44
- 📈 [プレビュー生成記録](https://github.com/cpprefjp/site/actions?query=event%3Apull_request_target+branch%3Afeat%2Fcmath-copysign-signbit)
5-
- **⫯** ソースの変更: [`d39c9aa..fc491d3`](https://github.com/cpprefjp/site/compare/d39c9aa8732432ba0f0161c4efcb9d8ba99c8d65..fc491d3893c4942ac82672c71f36adc8fd86e5ac)
5+
- **⫯** ソースの変更: [`54d6125..d3c1b23`](https://github.com/cpprefjp/site/compare/54d6125be2d9f2cd9013f03950237d324b4b91af..d3c1b2340d19a6a1568ab870615da43e16b6c38b)
66

7-
## 変更記事一覧 (2件)
7+
## 変更記事一覧 (3件)
88

99
- 📝 [`reference/cmath/copysign`](https://cpprefjp.github.io/site/gen/pull/1559/reference/cmath/copysign.html)
1010
- 📝 [`reference/cmath/signbit`](https://cpprefjp.github.io/site/gen/pull/1559/reference/cmath/signbit.html)
11+
- 📝 [`reference/execution/execution`](https://cpprefjp.github.io/site/gen/pull/1559/reference/execution/execution.html)

gen/pull/1559/reference/cmath/signbit.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ <h2>概要</h2>
239239
</ul>
240240
<h2><a class="cpprefjp-defined-word" data-desc="関数呼び出し式の評価結果となるオブジェクト・値">戻り値</a></h2>
241241
<p>パラメータ<code>x</code>が負数である場合、<code>true</code>を返す。そうでない場合、<code>false</code>を返す。</p>
242-
<p>この関数はその名前の通り、浮動小数点数の符号ビットを検出する。そのため、<code>NaN</code>の符号を検出することができる。
242+
<p>この関数はその名前の通り、浮動小数点数の符号ビットを検出する。そのため、<code>NaN</code>の符号を検出することができる。<br />
243243
他には<code><a href="copysign.html">std::copysign</a></code>でも検出でき、この2つのみが<code>NaN</code>の符号を検出できる移植性のある方法となる。</p>
244244
<h2>備考</h2>
245245
<ul>

gen/pull/1559/rss.xml

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2026-01-12T00:44:44.550721</updated>
6-
<id>129a05ef-6c68-4cd1-aae8-09a17ec830cf</id>
5+
<updated>2026-01-12T02:30:25.201964</updated>
6+
<id>7bfe9313-c2be-4e1c-ab3d-0099bdea957c</id>
77

88

99
<entry>
1010
<title>copysign -- feat(cmath/copysign): 実行例のバリエーションを増やす</title>
1111
<link href="https://cpprefjp.github.io/reference/cmath/copysign.html"/>
12-
<id>fc491d3893c4942ac82672c71f36adc8fd86e5ac:reference/cmath/copysign.md</id>
12+
<id>d3c1b2340d19a6a1568ab870615da43e16b6c38b:reference/cmath/copysign.md</id>
1313
<updated>2026-01-12T09:32:09+09:00</updated>
1414

1515
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/cmath/copysign.md b/reference/cmath/copysign.md
@@ -61,22 +61,13 @@ index ed7f660b3..e31b2c84b 100644
6161
<entry>
6262
<title>signbit -- fix(cmath/signbit): インデントの修正</title>
6363
<link href="https://cpprefjp.github.io/reference/cmath/signbit.html"/>
64-
<id>474946a5b85d91790e2c403ab41ac482c8e67adb:reference/cmath/signbit.md</id>
64+
<id>5895cf13311806d7a5734c60707248615c4b0dc9:reference/cmath/signbit.md</id>
6565
<updated>2026-01-12T09:14:56+09:00</updated>
6666

6767
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/cmath/signbit.md b/reference/cmath/signbit.md
68-
index 2bc875a71..54c60e458 100644
68+
index 2bc875a71..4b575c401 100644
6969
--- a/reference/cmath/signbit.md
7070
+++ b/reference/cmath/signbit.md
71-
@@ -34,7 +34,7 @@ namespace std {
72-
## 戻り値
73-
パラメータ`x`が負数である場合、`true`を返す。そうでない場合、`false`を返す。
74-
75-
-この関数はその名前の通り、浮動小数点数の符号ビットを検出する。そのため、`NaN`の符号を検出することができる。
76-
+この関数はその名前の通り、浮動小数点数の符号ビットを検出する。そのため、`NaN`の符号を検出することができる。
77-
他には[`std::copysign`](/reference/cmath/copysign.md)でも検出でき、この2つのみが`NaN`の符号を検出できる移植性のある方法となる。
78-
79-
8071
@@ -51,7 +51,7 @@ namespace std {
8172

8273
int main()

0 commit comments

Comments
 (0)