fix bug of flagTexts disappear by Sentence property type.
This commit is contained in:
@@ -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<T></a></dt>
|
||||
<dd><p>Node for <a class="xref" href="Hi.Common.Collections.LazyLinkedList-1.html">LazyLinkedList<T></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<T></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<T></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">
|
||||
|
||||
Reference in New Issue
Block a user