Skip to content

Commit

Permalink
deploy: f1eb9be
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 3, 2023
1 parent 7c7d3fc commit 81b4d46
Show file tree
Hide file tree
Showing 167 changed files with 25,782 additions and 25,782 deletions.
2 changes: 1 addition & 1 deletion core/bufio/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/bufio/writer.odin">writer.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.954228400 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.204791900 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
16 changes: 8 additions & 8 deletions core/builtin/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1984,13 +1984,13 @@ <h3 id="matrix2x2_determinant"><span><a class="doc-id-link" href="#matrix2x2_det
<div class="pkg-entity">
<h3 id="matrix3x3_determinant"><span><a class="doc-id-link" href="#matrix3x3_determinant">matrix3x3_determinant<span class="a-hidden">&nbsp;¶</span></a></span><div class="doc-source"><a href="https://github.com/odin-lang/Odin/tree/master/core/runtime/core_builtin_matrix.odin#L79"><em>Source</em></a></div></h3>
<div>
<pre class="doc-code">matrix3x3_determinant :: <span class="keyword-type">proc</span> "contextless" (m: $A/<span class="keyword-type">matrix</span>[3, 3]$T) -> (det: $T) {…}</pre>
<pre class="doc-code">matrix3x3_determinant :: <span class="keyword-type">proc</span> "contextless" (m: $M/<span class="keyword-type">matrix</span>[3, 3]$T) -> (det: $T) {…}</pre>
</div>
</div>
<div class="pkg-entity">
<h3 id="matrix4x4_determinant"><span><a class="doc-id-link" href="#matrix4x4_determinant">matrix4x4_determinant<span class="a-hidden">&nbsp;¶</span></a></span><div class="doc-source"><a href="https://github.com/odin-lang/Odin/tree/master/core/runtime/core_builtin_matrix.odin#L86"><em>Source</em></a></div></h3>
<div>
<pre class="doc-code">matrix4x4_determinant :: <span class="keyword-type">proc</span> "contextless" (m: $M/<span class="keyword-type">matrix</span>[4, 4]$T) -> (det: $T) {…}</pre>
<pre class="doc-code">matrix4x4_determinant :: <span class="keyword-type">proc</span> "contextless" (m: $A/<span class="keyword-type">matrix</span>[4, 4]$T) -> (det: $T) {…}</pre>
</div>
</div>
<div class="pkg-entity">
Expand All @@ -2008,13 +2008,13 @@ <h3 id="matrix2x2_adjugate"><span><a class="doc-id-link" href="#matrix2x2_adjuga
<div class="pkg-entity">
<h3 id="matrix3x3_adjugate"><span><a class="doc-id-link" href="#matrix3x3_adjugate">matrix3x3_adjugate<span class="a-hidden">&nbsp;¶</span></a></span><div class="doc-source"><a href="https://github.com/odin-lang/Odin/tree/master/core/runtime/core_builtin_matrix.odin#L113"><em>Source</em></a></div></h3>
<div>
<pre class="doc-code">matrix3x3_adjugate :: <span class="keyword-type">proc</span> "contextless" (m: $A/<span class="keyword-type">matrix</span>[3, 3]$T) -> (y: $A/<span class="keyword-type">matrix</span>[3, 3]$T) {…}</pre>
<pre class="doc-code">matrix3x3_adjugate :: <span class="keyword-type">proc</span> "contextless" (m: $M/<span class="keyword-type">matrix</span>[3, 3]$T) -> (y: $M/<span class="keyword-type">matrix</span>[3, 3]$T) {…}</pre>
</div>
</div>
<div class="pkg-entity">
<h3 id="matrix4x4_adjugate"><span><a class="doc-id-link" href="#matrix4x4_adjugate">matrix4x4_adjugate<span class="a-hidden">&nbsp;¶</span></a></span><div class="doc-source"><a href="https://github.com/odin-lang/Odin/tree/master/core/runtime/core_builtin_matrix.odin#L128"><em>Source</em></a></div></h3>
<div>
<pre class="doc-code">matrix4x4_adjugate :: <span class="keyword-type">proc</span> "contextless" (x: $M/<span class="keyword-type">matrix</span>[4, 4]$T) -> (y: $M/<span class="keyword-type">matrix</span>[4, 4]$T) {…}</pre>
<pre class="doc-code">matrix4x4_adjugate :: <span class="keyword-type">proc</span> "contextless" (x: $A/<span class="keyword-type">matrix</span>[4, 4]$T) -> (y: $A/<span class="keyword-type">matrix</span>[4, 4]$T) {…}</pre>
</div>
</div>
<div class="pkg-entity">
Expand All @@ -2032,13 +2032,13 @@ <h3 id="matrix2x2_inverse_transpose"><span><a class="doc-id-link" href="#matrix2
<div class="pkg-entity">
<h3 id="matrix3x3_inverse_transpose"><span><a class="doc-id-link" href="#matrix3x3_inverse_transpose">matrix3x3_inverse_transpose<span class="a-hidden">&nbsp;¶</span></a></span><div class="doc-source"><a href="https://github.com/odin-lang/Odin/tree/master/core/runtime/core_builtin_matrix.odin#L163"><em>Source</em></a></div></h3>
<div>
<pre class="doc-code">matrix3x3_inverse_transpose :: <span class="keyword-type">proc</span> "contextless" (x: $A/<span class="keyword-type">matrix</span>[3, 3]$T) -> (y: $A/<span class="keyword-type">matrix</span>[3, 3]$T) {…}</pre>
<pre class="doc-code">matrix3x3_inverse_transpose :: <span class="keyword-type">proc</span> "contextless" (x: $M/<span class="keyword-type">matrix</span>[3, 3]$T) -> (y: $M/<span class="keyword-type">matrix</span>[3, 3]$T) {…}</pre>
</div>
</div>
<div class="pkg-entity">
<h3 id="matrix4x4_inverse_transpose"><span><a class="doc-id-link" href="#matrix4x4_inverse_transpose">matrix4x4_inverse_transpose<span class="a-hidden">&nbsp;¶</span></a></span><div class="doc-source"><a href="https://github.com/odin-lang/Odin/tree/master/core/runtime/core_builtin_matrix.odin#L184"><em>Source</em></a></div></h3>
<div>
<pre class="doc-code">matrix4x4_inverse_transpose :: <span class="keyword-type">proc</span> "contextless" (x: $M/<span class="keyword-type">matrix</span>[4, 4]$T) -> (y: $M/<span class="keyword-type">matrix</span>[4, 4]$T) {…}</pre>
<pre class="doc-code">matrix4x4_inverse_transpose :: <span class="keyword-type">proc</span> "contextless" (x: $A/<span class="keyword-type">matrix</span>[4, 4]$T) -> (y: $A/<span class="keyword-type">matrix</span>[4, 4]$T) {…}</pre>
</div>
</div>
<div class="pkg-entity">
Expand All @@ -2056,13 +2056,13 @@ <h3 id="matrix2x2_inverse"><span><a class="doc-id-link" href="#matrix2x2_inverse
<div class="pkg-entity">
<h3 id="matrix3x3_inverse"><span><a class="doc-id-link" href="#matrix3x3_inverse">matrix3x3_inverse<span class="a-hidden">&nbsp;¶</span></a></span><div class="doc-source"><a href="https://github.com/odin-lang/Odin/tree/master/core/runtime/core_builtin_matrix.odin#L232"><em>Source</em></a></div></h3>
<div>
<pre class="doc-code">matrix3x3_inverse :: <span class="keyword-type">proc</span> "contextless" (x: $A/<span class="keyword-type">matrix</span>[3, 3]$T) -> (y: $A/<span class="keyword-type">matrix</span>[3, 3]$T) {…}</pre>
<pre class="doc-code">matrix3x3_inverse :: <span class="keyword-type">proc</span> "contextless" (x: $M/<span class="keyword-type">matrix</span>[3, 3]$T) -> (y: $M/<span class="keyword-type">matrix</span>[3, 3]$T) {…}</pre>
</div>
</div>
<div class="pkg-entity">
<h3 id="matrix4x4_inverse"><span><a class="doc-id-link" href="#matrix4x4_inverse">matrix4x4_inverse<span class="a-hidden">&nbsp;¶</span></a></span><div class="doc-source"><a href="https://github.com/odin-lang/Odin/tree/master/core/runtime/core_builtin_matrix.odin#L253"><em>Source</em></a></div></h3>
<div>
<pre class="doc-code">matrix4x4_inverse :: <span class="keyword-type">proc</span> "contextless" (x: $M/<span class="keyword-type">matrix</span>[4, 4]$T) -> (y: $M/<span class="keyword-type">matrix</span>[4, 4]$T) {…}</pre>
<pre class="doc-code">matrix4x4_inverse :: <span class="keyword-type">proc</span> "contextless" (x: $A/<span class="keyword-type">matrix</span>[4, 4]$T) -> (y: $A/<span class="keyword-type">matrix</span>[4, 4]$T) {…}</pre>
</div>
</div>
<div class="pkg-entity">
Expand Down
2 changes: 1 addition & 1 deletion core/bytes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1248,7 +1248,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/bytes/reader.odin">reader.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.767948200 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.498647100 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/c/frontend/preprocessor/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -910,7 +910,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/c/frontend/preprocessor/unquote.odin">unquote.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.884693900 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.525575500 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/c/frontend/tokenizer/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/c/frontend/tokenizer/unicode.odin">unicode.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.963127600 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.184053600 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/c/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/c/c.odin">c.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.686287600 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.227908100 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/c/libc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6114,7 +6114,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/c/libc/wctype.odin">wctype.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.933562500 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.488284600 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/compress/gzip/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/compress/gzip/gzip.odin">gzip.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:08.199848100 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.196176400 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/compress/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/compress/common.odin">common.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:08.180047800 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.304108700 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/compress/shoco/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/compress/shoco/shoco.odin">shoco.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.771344900 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.537378500 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/compress/zlib/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/compress/zlib/zlib.odin">zlib.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.971987700 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.521638300 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/container/bit_array/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/container/bit_array/doc.odin">doc.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:08.208335200 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.189584000 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/container/intrusive/list/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/container/intrusive/list/intrusive_list.odin">intrusive_list.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.960661700 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.439680000 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/container/lru/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/container/lru/lru_cache.odin">lru_cache.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.877323100 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.302320300 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/container/priority_queue/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/container/priority_queue/priority_queue.odin">priority_queue.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:08.071670900 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.676951200 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/container/queue/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/container/queue/queue.odin">queue.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.683023300 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.300629400 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/container/small_array/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/container/small_array/small_array.odin">small_array.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:08.195987500 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.517609200 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/container/topological_sort/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/container/topological_sort/topological_sort.odin">topological_sort.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:08.177979400 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.677548700 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/crypto/blake/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/crypto/blake/blake.odin">blake.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.707342400 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.441568700 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/crypto/blake2b/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/crypto/blake2b/blake2b.odin">blake2b.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.954967600 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.678240700 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
2 changes: 1 addition & 1 deletion core/crypto/blake2s/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ <h2 id="pkg-source-files">Source Files</h2>
<li><a href="https://github.com/odin-lang/Odin/tree/master/core/crypto/blake2s/blake2s.odin">blake2s.odin</a></li>
</ul>
<h2 id="pkg-generation-information">Generation Information</h2>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-02 21:07:07.977009600 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-03 21:07:33.292210400 +0000 UTC</code></p>
</article>
<div class="col-lg-2 odin-toc-border navbar-light"><div class="sticky-top odin-below-navbar py-3">
<nav id="TableOfContents">
Expand Down
Loading

0 comments on commit 81b4d46

Please sign in to comment.