Skip to content

Commit fe3a4f8

Browse files
author
cpprefjp-autoupdate
committed
update automatically
1 parent 9d71fa8 commit fe3a4f8

File tree

3 files changed

+34
-71
lines changed

3 files changed

+34
-71
lines changed

reference/print/println.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@
188188

189189
<p class="text-right"><small>
190190
最終更新日時(UTC):
191-
<span itemprop="datePublished" content="2024-06-11T13:45:38">
192-
2024年06月11日 13時45分38秒
191+
<span itemprop="datePublished" content="2024-07-22T06:31:30">
192+
2024年07月22日 06時31分30秒
193193
</span>
194194
<br/>
195195
<span itemprop="author" itemscope itemtype="http://schema.org/Person">
196-
<span itemprop="name">Akira Takahashi</span>
196+
<span itemprop="name">I</span>
197197
</span>
198198
が更新
199199
</small></p>
@@ -234,7 +234,7 @@ <h2>概要</h2>
234234
<li>(2) : 指定された<code><span href="https://cpprefjp.github.io/reference/cstdio/file.md.nolink">FILE</span></code>に、書式指定で出力する</li>
235235
</ul>
236236
<p>この関数は、末尾に改行コードが付くことに注意。改行コードが不要な場合は、<code><a href="print.html">std::print()</a></code>関数を使用すること。</p>
237-
<p><code><a href="../ostream/basic_ostream.html">std::ostream</a></code>から派生したクラスオブジェクトに対して出力したい場合は、<code><a href="../ostream.html">&lt;ostream&gt;</a></code>ヘッダの<code><a href="../ostream/println.html">std::print()</a></code>関数を使用すること。</p>
237+
<p><code><a href="../ostream/basic_ostream.html">std::ostream</a></code>から派生したクラスオブジェクトに対して出力したい場合は、<code><a href="../ostream.html">&lt;ostream&gt;</a></code>ヘッダの<code><a href="../ostream/println.html">std::println()</a></code>関数を使用すること。</p>
238238
<h2>効果</h2>
239239
<ul>
240240
<li>

rss.xml

Lines changed: 29 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,37 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<title>cpprefjp - C++日本語リファレンス</title>
44
<link href="https://cpprefjp.github.io" />
5-
<updated>2024-07-21T14:37:38.088791</updated>
6-
<id>410b8892-ef98-4fa9-ac9e-d580f98d1c7e</id>
5+
<updated>2024-07-22T06:34:23.618163</updated>
6+
<id>eb684d3e-e28b-450c-b584-b5a8f37250ae</id>
77

88

9+
<entry>
10+
<title>println -- fix typo (print -&gt; println)</title>
11+
<link href="https://cpprefjp.github.io/reference/print/println.html"/>
12+
<id>8cc238ce20e5136912f1e70f7e426d6cc8b669de:reference/print/println.md</id>
13+
<updated>2024-07-22T15:31:30+09:00</updated>
14+
15+
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/print/println.md b/reference/print/println.md
16+
index 542fd0bf0..8fd358046 100644
17+
--- a/reference/print/println.md
18+
+++ b/reference/print/println.md
19+
@@ -31,7 +31,7 @@ namespace std {
20+
21+
この関数は、末尾に改行コードが付くことに注意。改行コードが不要な場合は、[`std::print()`](print.md)関数を使用すること。
22+
23+
-[`std::ostream`](/reference/ostream/basic_ostream.md)から派生したクラスオブジェクトに対して出力したい場合は、[`&amp;lt;ostream&amp;gt;`](/reference/ostream.md)ヘッダの[`std::print()`](/reference/ostream/println.md)関数を使用すること。
24+
+[`std::ostream`](/reference/ostream/basic_ostream.md)から派生したクラスオブジェクトに対して出力したい場合は、[`&amp;lt;ostream&amp;gt;`](/reference/ostream.md)ヘッダの[`std::println()`](/reference/ostream/println.md)関数を使用すること。
25+
26+
27+
## 効果
28+
&lt;/code&gt;&lt;/pre&gt;</summary>
29+
30+
<author>
31+
<name>I</name>
32+
<email>[email protected]</email>
33+
</author>
34+
</entry>
35+
936
<entry>
1037
<title>add -- linalg : addに例を追加 (#1233)</title>
1138
<link href="https://cpprefjp.github.io/reference/linalg/add.html"/>
@@ -211,68 +238,4 @@ index 43681bb39..5ab589c85 100644
211238
</author>
212239
</entry>
213240

214-
<entry>
215-
<title>dot -- linalg : dotに例を追加 (#1233)</title>
216-
<link href="https://cpprefjp.github.io/reference/linalg/dot.html"/>
217-
<id>5855664e5515ecbed9543458ba91bac38bbf8525:reference/linalg/dot.md</id>
218-
<updated>2024-07-19T09:34:28+09:00</updated>
219-
220-
<summary type="html">&lt;pre&gt;&lt;code&gt;diff --git a/reference/linalg/dot.md b/reference/linalg/dot.md
221-
index 95bf0a5c3..32add9a65 100644
222-
--- a/reference/linalg/dot.md
223-
+++ b/reference/linalg/dot.md
224-
@@ -81,9 +81,45 @@ $$
225-
226-
227-
## 例
228-
+**[注意] 処理系にあるコンパイラで確認していないため、間違っているかもしれません。**
229-
+
230-
+```cpp example
231-
+#include &amp;lt;cmath&amp;gt;
232-
+#include &amp;lt;execution&amp;gt;
233-
+#include &amp;lt;iostream&amp;gt;
234-
+#include &amp;lt;linalg&amp;gt;
235-
+#include &amp;lt;mdspan&amp;gt;
236-
+#include &amp;lt;numbers&amp;gt;
237-
+#include &amp;lt;vector&amp;gt;
238-
+
239-
+int main()
240-
+{
241-
+ constexpr size_t N = 3;
242-
+
243-
+ std::vector&amp;lt;double&amp;gt; a_vec({1, 2, 3});
244-
+ std::mdspan a(a_vec.data(), N);
245-
+
246-
+ std::vector&amp;lt;double&amp;gt; b_vec({4, 5, 6});
247-
+ std::mdspan b(b_vec.data(), N);
248-
+
249-
+ std::cout &amp;lt;&amp;lt; std::linalg::dot(a, b, -18) &amp;lt;&amp;lt; &amp;#39;\n&amp;#39; // (1)
250-
+ &amp;lt;&amp;lt; std::linalg::dot(std::execution::par, a, b, -18) &amp;lt;&amp;lt; &amp;#39;\n&amp;#39; // (2)
251-
+ &amp;lt;&amp;lt; std::linalg::dot(a, b) &amp;lt;&amp;lt; &amp;#39;\n&amp;#39; // (3)
252-
+ &amp;lt;&amp;lt; std::linalg::dot(std::execution::par, a, b) &amp;lt;&amp;lt; &amp;#39;\n&amp;#39;; // (4)
253-
+
254-
+ return 0;
255-
+}
256-
+```
257-
+* std::linalg::dot[color ff0000]
258-
259-
260-
### 出力
261-
+```
262-
+14
263-
+14
264-
+32
265-
+32
266-
+```
267-
268-
269-
## バージョン
270-
&lt;/code&gt;&lt;/pre&gt;</summary>
271-
272-
<author>
273-
<name>Yuya Asano</name>
274-
<email>[email protected]</email>
275-
</author>
276-
</entry>
277-
278241
</feed>

sitemap.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19925,7 +19925,7 @@
1992519925

1992619926
<url>
1992719927
<loc>https://cpprefjp.github.io/reference/print/println.html</loc>
19928-
<lastmod>2024-07-18T22:14:56+09:00</lastmod>
19928+
<lastmod>2024-07-22T15:31:30+09:00</lastmod>
1992919929
<changefreq>daily</changefreq>
1993019930
<priority>0.7</priority>
1993119931
</url>

0 commit comments

Comments
 (0)