fix bug of flagTexts disappear by Sentence property type.

This commit is contained in:
2026-03-11 11:21:20 +08:00
parent 1dfeb39345
commit 2c586333b6
124 changed files with 3440 additions and 847 deletions
@@ -107,6 +107,24 @@ Classes
<dl class="jumplist">
<dt><a class="xref" href="Hi.Common.Collections.FixedSizeConcurrentLinkedListUtil.html">FixedSizeConcurrentLinkedListUtil</a></dt>
<dd><p>Utility of Fixed Size Concurrent LinkedList.</p>
</dd>
</dl>
<dl class="jumplist">
<dt><a class="xref" href="Hi.Common.Collections.LazyLinkedListNode-1.html">LazyLinkedListNode&lt;T&gt;</a></dt>
<dd><p>Node for <a class="xref" href="Hi.Common.Collections.LazyLinkedList-1.html">LazyLinkedList&lt;T&gt;</a>.
Accessing <a class="xref" href="Hi.Common.Collections.LazyLinkedListNode-1.html#Hi_Common_Collections_LazyLinkedListNode_1_Next">Next</a> on the tail node automatically
materializes the next item from the list's source (if any).</p>
</dd>
</dl>
<dl class="jumplist">
<dt><a class="xref" href="Hi.Common.Collections.LazyLinkedList-1.html">LazyLinkedList&lt;T&gt;</a></dt>
<dd><p>A singly-growable linked list that can lazily materialize nodes
from an <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1">IEnumerable&lt;T&gt;</a> source.</p>
<p></p>
Without a source it behaves like a regular append-only linked list.
With a source, nodes are pulled on demand when
<a class="xref" href="Hi.Common.Collections.LazyLinkedListNode-1.html#Hi_Common_Collections_LazyLinkedListNode_1_Next">Next</a> is accessed on the tail,
or when <a class="xref" href="Hi.Common.Collections.LazyLinkedList-1.html#Hi_Common_Collections_LazyLinkedList_1_First">First</a> is accessed on an empty list.
</dd>
</dl>
<dl class="jumplist">