fix SoftNcRunner GM code normalization.
This commit is contained in:
@@ -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<T>)</a>).</p>
|
||||
</div>
|
||||
<div class="markdown level1 conceptual"></div>
|
||||
|
||||
<div class="codewrapper">
|
||||
<pre><code class="lang-csharp hljs">public LazyLinkedListNode<T> 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><T></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<T>)
|
||||
|
||||
</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<T> 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><T></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">
|
||||
|
||||
Reference in New Issue
Block a user