fix SoftNcRunner GM code normalization.

This commit is contained in:
2026-05-06 13:21:19 +08:00
parent 0fe9497552
commit 2f57932000
1238 changed files with 69405 additions and 22511 deletions
@@ -308,6 +308,41 @@ or <a class="xref" href="Hi.Common.Collections.LazyLinkedList-1.html#Hi_Common_C
<a id="Hi_Common_Collections_LazyLinkedList_1_ExhaustedLast_" data-uid="Hi.Common.Collections.LazyLinkedList`1.ExhaustedLast*"></a>
<h3 id="Hi_Common_Collections_LazyLinkedList_1_ExhaustedLast" data-uid="Hi.Common.Collections.LazyLinkedList`1.ExhaustedLast">
ExhaustedLast
</h3>
<div class="markdown level1 summary"><p>Forces full materialization of the lazy source and returns the last node.
Walks the source to completion (no-op if already exhausted), then returns
<a class="xref" href="Hi.Common.Collections.LazyLinkedList-1.html#Hi_Common_Collections_LazyLinkedList_1_Last">Last</a>. Use when callers need the definitive tail at this point
in time (e.g. as a stable predecessor before <a class="xref" href="Hi.Common.Collections.LazyLinkedList-1.html#Hi_Common_Collections_LazyLinkedList_1_AppendSource_System_Collections_Generic_IEnumerable__0__">AppendSource(IEnumerable&lt;T&gt;)</a>).</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public LazyLinkedListNode&lt;T&gt; ExhaustedLast { get; }</code></pre>
</div>
<h4 class="section">Property Value</h4>
<dl class="parameters">
<dt><a class="xref" href="Hi.Common.Collections.LazyLinkedListNode-1.html">LazyLinkedListNode</a>&lt;T&gt;</dt>
<dd></dd>
</dl>
<a id="Hi_Common_Collections_LazyLinkedList_1_First_" data-uid="Hi.Common.Collections.LazyLinkedList`1.First*"></a>
<h3 id="Hi_Common_Collections_LazyLinkedList_1_First" data-uid="Hi.Common.Collections.LazyLinkedList`1.First">
@@ -448,6 +483,44 @@ or <a class="xref" href="Hi.Common.Collections.LazyLinkedList-1.html#Hi_Common_C
<a id="Hi_Common_Collections_LazyLinkedList_1_AppendSource_" data-uid="Hi.Common.Collections.LazyLinkedList`1.AppendSource*"></a>
<h3 id="Hi_Common_Collections_LazyLinkedList_1_AppendSource_System_Collections_Generic_IEnumerable__0__" data-uid="Hi.Common.Collections.LazyLinkedList`1.AppendSource(System.Collections.Generic.IEnumerable{`0})">
AppendSource(IEnumerable&lt;T&gt;)
</h3>
<div class="markdown level1 summary"><p>Appends a new lazy source after the current source. The existing source's
remaining items (if any) are drained first, then the new source is yielded.
Re-opens the list for further on-demand materialization, so calling
<a class="xref" href="Hi.Common.Collections.LazyLinkedListNode-1.html#Hi_Common_Collections_LazyLinkedListNode_1_Next">Next</a> on the prior tail materializes the
next item and links <a class="xref" href="Hi.Common.Collections.LazyLinkedListNode-1.html#Hi_Common_Collections_LazyLinkedListNode_1_Previous">Previous</a> across the
boundary.</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public void AppendSource(IEnumerable&lt;T&gt; src)</code></pre>
</div>
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>src</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1">IEnumerable</a>&lt;T&gt;</dt>
<dd><p>The new source to append.</p>
</dd>
</dl>
<a id="Hi_Common_Collections_LazyLinkedList_1_Dispose_" data-uid="Hi.Common.Collections.LazyLinkedList`1.Dispose*"></a>
<h3 id="Hi_Common_Collections_LazyLinkedList_1_Dispose" data-uid="Hi.Common.Collections.LazyLinkedList`1.Dispose">