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 5, 2023
1 parent 62cff0f commit d307492
Show file tree
Hide file tree
Showing 167 changed files with 26,834 additions and 26,833 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-04 21:08:55.342243700 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.793913700 +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-04 21:08:54.992984200 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.508649500 +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-04 21:08:55.115087000 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.691546400 +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-04 21:08:55.001458800 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.395386900 +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-04 21:08:55.336630900 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.231004500 +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-04 21:08:55.222233700 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.684272800 +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-04 21:08:55.146465800 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.435036400 +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-04 21:08:55.148968400 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.484607100 +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-04 21:08:55.085542600 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.266265300 +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-04 21:08:55.084577000 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.596313800 +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-04 21:08:55.149991100 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.390019000 +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-04 21:08:55.251698100 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.442448700 +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-04 21:08:55.122331000 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.260114100 +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-04 21:08:55.075270600 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.443419600 +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-04 21:08:55.059914700 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.245093600 +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-04 21:08:55.045999900 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.396680500 +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-04 21:08:55.100882800 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.498002500 +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-04 21:08:55.457211100 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.445123700 +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-04 21:08:55.044484600 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.449374800 +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-04 21:08:55.450738800 +0000 UTC</code></p>
<p>Generated with <code>odin version dev-2023-09 (vendor "odin") Windows_amd64 @ 2023-09-05 21:09:23.485489700 +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 d307492

Please sign in to comment.