This commit is contained in:
2026-01-26 03:40:40 +08:00
parent a847916af6
commit a128d423b9
30 changed files with 163 additions and 125 deletions
@@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Class LinkedListUtil | HiAPI-C# 2025 ">
<meta name="description" content="Utility methods for working with linked lists.">
<link rel="icon" href="../img/HiAPI.favicon.ico">
<link rel="stylesheet" href="../public/docfx.min.css">
<link rel="stylesheet" href="../public/main.css">
@@ -97,7 +97,8 @@ Class LinkedListUtil
<dl><dt>Assembly</dt><dd>HiGeom.dll</dd></dl>
</div>
<div class="markdown summary"></div>
<div class="markdown summary"><p>Utility methods for working with linked lists.</p>
</div>
<div class="markdown conceptual"></div>
<div class="codewrapper">
@@ -159,7 +160,8 @@ Class LinkedListUtil
</h3>
<div class="markdown level1 summary"></div>
<div class="markdown level1 summary"><p>Enumerates linked list nodes from the beginning node to the end node (exclusive).</p>
</div>
<div class="markdown level1 conceptual"></div>
<div class="codewrapper">
@@ -169,22 +171,25 @@ Class LinkedListUtil
<h4 class="section">Parameters</h4>
<dl class="parameters">
<dt><code>beginNode</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode-1">LinkedListNode</a>&lt;T&gt;</dt>
<dd></dd>
<dd><p>The starting node (inclusive).</p>
</dd>
<dt><code>endNode</code> <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode-1">LinkedListNode</a>&lt;T&gt;</dt>
<dd><p>exclusive end node. It can be null.</p>
<dd><p>Exclusive end node. It can be null.</p>
</dd>
</dl>
<h4 class="section">Returns</h4>
<dl class="parameters">
<dt><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1">IEnumerable</a>&lt;<a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.generic.linkedlistnode-1">LinkedListNode</a>&lt;T&gt;&gt;</dt>
<dd></dd>
<dd><p>An enumerable sequence of linked list nodes.</p>
</dd>
</dl>
<h4 class="section">Type Parameters</h4>
<dl class="parameters">
<dt><code>T</code></dt>
<dd></dd>
<dd><p>The type of elements in the linked list.</p>
</dd>
</dl>