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 29, 2023
1 parent aaf2fbf commit 35a2ec9
Show file tree
Hide file tree
Showing 167 changed files with 27,687 additions and 27,687 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-28 21:09:33.645371600 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.587585200 +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: $M/<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: $A/<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: $A/<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: $M/<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: $M/<span class="keyword-type">matrix</span>[3, 3]$T) -> (y: $M/<span class="keyword-type">matrix</span>[3, 3]$T) {…}</pre>
<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>
</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: $A/<span class="keyword-type">matrix</span>[4, 4]$T) -> (y: $A/<span class="keyword-type">matrix</span>[4, 4]$T) {…}</pre>
<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>
</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: $M/<span class="keyword-type">matrix</span>[3, 3]$T) -> (y: $M/<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: $A/<span class="keyword-type">matrix</span>[3, 3]$T) -> (y: $A/<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: $A/<span class="keyword-type">matrix</span>[4, 4]$T) -> (y: $A/<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: $M/<span class="keyword-type">matrix</span>[4, 4]$T) -> (y: $M/<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: $M/<span class="keyword-type">matrix</span>[3, 3]$T) -> (y: $M/<span class="keyword-type">matrix</span>[3, 3]$T) {…}</pre>
<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>
</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: $A/<span class="keyword-type">matrix</span>[4, 4]$T) -> (y: $A/<span class="keyword-type">matrix</span>[4, 4]$T) {…}</pre>
<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>
</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-28 21:09:33.601712100 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.734528200 +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-28 21:09:33.367284600 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.786509600 +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-28 21:09:33.784307600 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.896331400 +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-28 21:09:33.612558400 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.486077800 +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-28 21:09:33.262159800 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.892374400 +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-28 21:09:33.267168200 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.902680600 +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-28 21:09:33.520491600 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.477793400 +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-28 21:09:33.277407400 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.482152500 +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-28 21:09:33.279716400 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.495636000 +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-28 21:09:33.641701800 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.466641600 +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 @@ -471,7 +471,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-28 21:09:33.486252600 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.452562600 +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-28 21:09:33.381556400 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.464668400 +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-28 21:09:33.278335100 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.780927000 +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-28 21:09:33.776264900 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.454066000 +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-28 21:09:33.766201900 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.460134700 +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-28 21:09:33.312381100 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.787255400 +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-28 21:09:33.311446500 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.927449700 +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-28 21:09:33.604850300 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.489053400 +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-28 21:09:33.315729100 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-29 21:08:59.585199000 +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 35a2ec9

Please sign in to comment.