Skip to content

Commit

Permalink
Deploying to gh-pages from @ a6e6b1a 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
fszewczyk committed Nov 9, 2023
1 parent 5910537 commit 2d9ccde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion md_docs_tutorials_Cheatsheet.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ <h1><a class="anchor" id="autotoc_md3"></a>
Vectors</h1>
<p>Here are all the available operations using <code>Vector</code>:</p>
<div class="fragment"><div class="line"><span class="keyword">auto</span> a = Vector&lt;float&gt;::of(1, 2, 3);</div>
<div class="line"><span class="keyword">auto</span> b = Vector&lt;float&gt;::of({2, 3, 4}); <span class="comment">// a[i] == b[i];</span></div>
<div class="line"><span class="keyword">auto</span> b = Vector&lt;float&gt;::of({2, 3, 4}); </div>
<div class="line"> </div>
<div class="line">a.size() <span class="comment">// 3</span></div>
<div class="line">a.dot(b) <span class="comment">// 1 * 2 + 2 * 3 + 3 * 4 = 20</span></div>
Expand Down

0 comments on commit 2d9ccde

Please sign in to comment.