Skip to content

Commit 0257651

Browse files
author
buildbot121
committed
API documentation update by build server
1 parent 19698c4 commit 0257651

8 files changed

+230
-14
lines changed

docs/api/Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph-1.html

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,16 @@ <h5>Inheritance</h5>
9292
<div class="level0"><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object">Object</a></div>
9393
<div class="level1"><span class="xref">DiGraph&lt;T&gt;</span></div>
9494
</div>
95+
<div classs="implements">
96+
<h5>Implements</h5>
97+
<div><span class="xref">IDiGraph</span>&lt;T&gt;</div>
98+
<div><span class="xref">IEnumerable</span>&lt;T&gt;</div>
99+
</div>
95100
<h6><strong>Namespace</strong>: <a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.html">Advanced.Algorithms.DataStructures.Graph.AdjacencyList</a></h6>
96101
<h6><strong>Assembly</strong>: Advanced.Algorithms.dll</h6>
97102
<h5 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_syntax">Syntax</h5>
98103
<div class="codewrapper">
99-
<pre><code class="lang-csharp hljs">public class DiGraph&lt;T&gt; : IDiGraph&lt;T&gt;</code></pre>
104+
<pre><code class="lang-csharp hljs">public class DiGraph&lt;T&gt; : IGraph&lt;T&gt;, IDiGraph&lt;T&gt;, IEnumerable&lt;T&gt;</code></pre>
100105
</div>
101106
<h5 class="typeParameters">Type Parameters</h5>
102107
<table class="table table-bordered table-striped table-condensed">
@@ -181,6 +186,31 @@ <h5 class="propertyValue">Property Value</h5>
181186
</table>
182187

183188

189+
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_VerticesAsEnumberable_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.VerticesAsEnumberable*"></a>
190+
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_VerticesAsEnumberable" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.VerticesAsEnumberable">VerticesAsEnumberable</h4>
191+
<div class="markdown level1 summary"></div>
192+
<div class="markdown level1 conceptual"></div>
193+
<h5 class="decalaration">Declaration</h5>
194+
<div class="codewrapper">
195+
<pre><code class="lang-csharp hljs">public IEnumerable&lt;IGraphVertex&lt;T&gt;&gt; VerticesAsEnumberable { get; }</code></pre>
196+
</div>
197+
<h5 class="propertyValue">Property Value</h5>
198+
<table class="table table-bordered table-striped table-condensed">
199+
<thead>
200+
<tr>
201+
<th>Type</th>
202+
<th>Description</th>
203+
</tr>
204+
</thead>
205+
<tbody>
206+
<tr>
207+
<td><span class="xref">IEnumerable</span>&lt;<span class="xref">IGraphVertex</span>&lt;T&gt;&gt;</td>
208+
<td></td>
209+
</tr>
210+
</tbody>
211+
</table>
212+
213+
184214
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_VerticesCount_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.VerticesCount*"></a>
185215
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_VerticesCount" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.VerticesCount">VerticesCount</h4>
186216
<div class="markdown level1 summary"></div>
@@ -659,6 +689,13 @@ <h5 class="parameters">Parameters</h5>
659689
</tr>
660690
</tbody>
661691
</table>
692+
<h3 id="implements">Implements</h3>
693+
<div>
694+
<span class="xref">IDiGraph&lt;&gt;</span>
695+
</div>
696+
<div>
697+
<span class="xref">IEnumerable&lt;&gt;</span>
698+
</div>
662699
</article>
663700
</div>
664701

docs/api/Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraphVertex-1.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,14 @@ <h5>Inheritance</h5>
9494
</div>
9595
<div classs="implements">
9696
<h5>Implements</h5>
97+
<div><span class="xref">IGraphVertex</span>&lt;T&gt;</div>
9798
<div><span class="xref">IEnumerable</span>&lt;T&gt;</div>
9899
</div>
99100
<h6><strong>Namespace</strong>: <a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.html">Advanced.Algorithms.DataStructures.Graph.AdjacencyList</a></h6>
100101
<h6><strong>Assembly</strong>: Advanced.Algorithms.dll</h6>
101102
<h5 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraphVertex_1_syntax">Syntax</h5>
102103
<div class="codewrapper">
103-
<pre><code class="lang-csharp hljs">public class DiGraphVertex&lt;T&gt; : IDiGraphVertex&lt;T&gt;, IEnumerable&lt;T&gt;</code></pre>
104+
<pre><code class="lang-csharp hljs">public class DiGraphVertex&lt;T&gt; : IDiGraphVertex&lt;T&gt;, IGraphVertex&lt;T&gt;, IEnumerable&lt;T&gt;</code></pre>
104105
</div>
105106
<h5 class="typeParameters">Type Parameters</h5>
106107
<table class="table table-bordered table-striped table-condensed">
@@ -343,6 +344,9 @@ <h5 class="returns">Returns</h5>
343344
</tbody>
344345
</table>
345346
<h3 id="implements">Implements</h3>
347+
<div>
348+
<span class="xref">IGraphVertex&lt;&gt;</span>
349+
</div>
346350
<div>
347351
<span class="xref">IEnumerable&lt;&gt;</span>
348352
</div>

docs/api/Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph-1.html

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,15 @@ <h5>Inheritance</h5>
9292
<div class="level0"><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object">Object</a></div>
9393
<div class="level1"><span class="xref">Graph&lt;T&gt;</span></div>
9494
</div>
95+
<div classs="implements">
96+
<h5>Implements</h5>
97+
<div><span class="xref">IEnumerable</span>&lt;T&gt;</div>
98+
</div>
9599
<h6><strong>Namespace</strong>: <a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.html">Advanced.Algorithms.DataStructures.Graph.AdjacencyList</a></h6>
96100
<h6><strong>Assembly</strong>: Advanced.Algorithms.dll</h6>
97101
<h5 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_syntax">Syntax</h5>
98102
<div class="codewrapper">
99-
<pre><code class="lang-csharp hljs">public class Graph&lt;T&gt; : IGraph&lt;T&gt;</code></pre>
103+
<pre><code class="lang-csharp hljs">public class Graph&lt;T&gt; : IGraph&lt;T&gt;, IEnumerable&lt;T&gt;</code></pre>
100104
</div>
101105
<h5 class="typeParameters">Type Parameters</h5>
102106
<table class="table table-bordered table-striped table-condensed">
@@ -181,6 +185,31 @@ <h5 class="propertyValue">Property Value</h5>
181185
</table>
182186

183187

188+
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_VerticesAsEnumberable_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.VerticesAsEnumberable*"></a>
189+
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_VerticesAsEnumberable" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.VerticesAsEnumberable">VerticesAsEnumberable</h4>
190+
<div class="markdown level1 summary"></div>
191+
<div class="markdown level1 conceptual"></div>
192+
<h5 class="decalaration">Declaration</h5>
193+
<div class="codewrapper">
194+
<pre><code class="lang-csharp hljs">public IEnumerable&lt;IGraphVertex&lt;T&gt;&gt; VerticesAsEnumberable { get; }</code></pre>
195+
</div>
196+
<h5 class="propertyValue">Property Value</h5>
197+
<table class="table table-bordered table-striped table-condensed">
198+
<thead>
199+
<tr>
200+
<th>Type</th>
201+
<th>Description</th>
202+
</tr>
203+
</thead>
204+
<tbody>
205+
<tr>
206+
<td><span class="xref">IEnumerable</span>&lt;<span class="xref">IGraphVertex</span>&lt;T&gt;&gt;</td>
207+
<td></td>
208+
</tr>
209+
</tbody>
210+
</table>
211+
212+
184213
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_VerticesCount_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.VerticesCount*"></a>
185214
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_VerticesCount" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.VerticesCount">VerticesCount</h4>
186215
<div class="markdown level1 summary"></div>
@@ -617,6 +646,10 @@ <h5 class="parameters">Parameters</h5>
617646
</tr>
618647
</tbody>
619648
</table>
649+
<h3 id="implements">Implements</h3>
650+
<div>
651+
<span class="xref">IEnumerable&lt;&gt;</span>
652+
</div>
620653
</article>
621654
</div>
622655

docs/api/Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph-2.html

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,16 @@ <h5>Inheritance</h5>
9292
<div class="level0"><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object">Object</a></div>
9393
<div class="level1"><span class="xref">WeightedDiGraph&lt;T, TW&gt;</span></div>
9494
</div>
95+
<div classs="implements">
96+
<h5>Implements</h5>
97+
<div><span class="xref">IGraph</span>&lt;T&gt;</div>
98+
<div><span class="xref">IEnumerable</span>&lt;T&gt;</div>
99+
</div>
95100
<h6><strong>Namespace</strong>: <a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.html">Advanced.Algorithms.DataStructures.Graph.AdjacencyList</a></h6>
96101
<h6><strong>Assembly</strong>: Advanced.Algorithms.dll</h6>
97102
<h5 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_syntax">Syntax</h5>
98103
<div class="codewrapper">
99-
<pre><code class="lang-csharp hljs">public class WeightedDiGraph&lt;T, TW&gt; : IDiGraph&lt;T&gt; where TW : IComparable</code></pre>
104+
<pre><code class="lang-csharp hljs">public class WeightedDiGraph&lt;T, TW&gt; : IDiGraph&lt;T&gt;, IGraph&lt;T&gt;, IEnumerable&lt;T&gt; where TW : IComparable</code></pre>
100105
</div>
101106
<h5 class="typeParameters">Type Parameters</h5>
102107
<table class="table table-bordered table-striped table-condensed">
@@ -185,6 +190,31 @@ <h5 class="propertyValue">Property Value</h5>
185190
</table>
186191

187192

193+
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_VerticesAsEnumberable_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.VerticesAsEnumberable*"></a>
194+
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_VerticesAsEnumberable" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.VerticesAsEnumberable">VerticesAsEnumberable</h4>
195+
<div class="markdown level1 summary"></div>
196+
<div class="markdown level1 conceptual"></div>
197+
<h5 class="decalaration">Declaration</h5>
198+
<div class="codewrapper">
199+
<pre><code class="lang-csharp hljs">public IEnumerable&lt;IGraphVertex&lt;T&gt;&gt; VerticesAsEnumberable { get; }</code></pre>
200+
</div>
201+
<h5 class="propertyValue">Property Value</h5>
202+
<table class="table table-bordered table-striped table-condensed">
203+
<thead>
204+
<tr>
205+
<th>Type</th>
206+
<th>Description</th>
207+
</tr>
208+
</thead>
209+
<tbody>
210+
<tr>
211+
<td><span class="xref">IEnumerable</span>&lt;<span class="xref">IGraphVertex</span>&lt;T&gt;&gt;</td>
212+
<td></td>
213+
</tr>
214+
</tbody>
215+
</table>
216+
217+
188218
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_VerticesCount_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.VerticesCount*"></a>
189219
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_VerticesCount" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.VerticesCount">VerticesCount</h4>
190220
<div class="markdown level1 summary"></div>
@@ -438,7 +468,7 @@ <h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2
438468
<div class="markdown level1 conceptual"></div>
439469
<h5 class="decalaration">Declaration</h5>
440470
<div class="codewrapper">
441-
<pre><code class="lang-csharp hljs">public IDiGraphVertex&lt;T&gt; GetVertex(T value)</code></pre>
471+
<pre><code class="lang-csharp hljs">public IDiGraphVertex&lt;T&gt; GetVertex(T key)</code></pre>
442472
</div>
443473
<h5 class="parameters">Parameters</h5>
444474
<table class="table table-bordered table-striped table-condensed">
@@ -452,7 +482,7 @@ <h5 class="parameters">Parameters</h5>
452482
<tbody>
453483
<tr>
454484
<td><span class="xref">T</span></td>
455-
<td><span class="parametername">value</span></td>
485+
<td><span class="parametername">key</span></td>
456486
<td></td>
457487
</tr>
458488
</tbody>
@@ -668,6 +698,13 @@ <h5 class="parameters">Parameters</h5>
668698
</tr>
669699
</tbody>
670700
</table>
701+
<h3 id="implements">Implements</h3>
702+
<div>
703+
<span class="xref">IGraph&lt;&gt;</span>
704+
</div>
705+
<div>
706+
<span class="xref">IEnumerable&lt;&gt;</span>
707+
</div>
671708
</article>
672709
</div>
673710

docs/api/Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraphVertex-2.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,14 @@ <h5>Inheritance</h5>
9494
</div>
9595
<div classs="implements">
9696
<h5>Implements</h5>
97+
<div><span class="xref">IGraphVertex</span>&lt;T&gt;</div>
9798
<div><span class="xref">IEnumerable</span>&lt;T&gt;</div>
9899
</div>
99100
<h6><strong>Namespace</strong>: <a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.html">Advanced.Algorithms.DataStructures.Graph.AdjacencyList</a></h6>
100101
<h6><strong>Assembly</strong>: Advanced.Algorithms.dll</h6>
101102
<h5 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraphVertex_2_syntax">Syntax</h5>
102103
<div class="codewrapper">
103-
<pre><code class="lang-csharp hljs">public class WeightedDiGraphVertex&lt;T, TW&gt; : IDiGraphVertex&lt;T&gt;, IEnumerable&lt;T&gt; where TW : IComparable</code></pre>
104+
<pre><code class="lang-csharp hljs">public class WeightedDiGraphVertex&lt;T, TW&gt; : IDiGraphVertex&lt;T&gt;, IGraphVertex&lt;T&gt;, IEnumerable&lt;T&gt; where TW : IComparable</code></pre>
104105
</div>
105106
<h5 class="typeParameters">Type Parameters</h5>
106107
<table class="table table-bordered table-striped table-condensed">
@@ -347,6 +348,9 @@ <h5 class="returns">Returns</h5>
347348
</tbody>
348349
</table>
349350
<h3 id="implements">Implements</h3>
351+
<div>
352+
<span class="xref">IGraphVertex&lt;&gt;</span>
353+
</div>
350354
<div>
351355
<span class="xref">IEnumerable&lt;&gt;</span>
352356
</div>

docs/api/Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedGraph-2.html

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,15 @@ <h5>Inheritance</h5>
9292
<div class="level0"><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object">Object</a></div>
9393
<div class="level1"><span class="xref">WeightedGraph&lt;T, TW&gt;</span></div>
9494
</div>
95+
<div classs="implements">
96+
<h5>Implements</h5>
97+
<div><span class="xref">IEnumerable</span>&lt;T&gt;</div>
98+
</div>
9599
<h6><strong>Namespace</strong>: <a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.html">Advanced.Algorithms.DataStructures.Graph.AdjacencyList</a></h6>
96100
<h6><strong>Assembly</strong>: Advanced.Algorithms.dll</h6>
97101
<h5 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedGraph_2_syntax">Syntax</h5>
98102
<div class="codewrapper">
99-
<pre><code class="lang-csharp hljs">public class WeightedGraph&lt;T, TW&gt; : IGraph&lt;T&gt; where TW : IComparable</code></pre>
103+
<pre><code class="lang-csharp hljs">public class WeightedGraph&lt;T, TW&gt; : IGraph&lt;T&gt;, IEnumerable&lt;T&gt; where TW : IComparable</code></pre>
100104
</div>
101105
<h5 class="typeParameters">Type Parameters</h5>
102106
<table class="table table-bordered table-striped table-condensed">
@@ -185,6 +189,31 @@ <h5 class="propertyValue">Property Value</h5>
185189
</table>
186190

187191

192+
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedGraph_2_VerticesAsEnumberable_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedGraph`2.VerticesAsEnumberable*"></a>
193+
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedGraph_2_VerticesAsEnumberable" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedGraph`2.VerticesAsEnumberable">VerticesAsEnumberable</h4>
194+
<div class="markdown level1 summary"></div>
195+
<div class="markdown level1 conceptual"></div>
196+
<h5 class="decalaration">Declaration</h5>
197+
<div class="codewrapper">
198+
<pre><code class="lang-csharp hljs">public IEnumerable&lt;IGraphVertex&lt;T&gt;&gt; VerticesAsEnumberable { get; }</code></pre>
199+
</div>
200+
<h5 class="propertyValue">Property Value</h5>
201+
<table class="table table-bordered table-striped table-condensed">
202+
<thead>
203+
<tr>
204+
<th>Type</th>
205+
<th>Description</th>
206+
</tr>
207+
</thead>
208+
<tbody>
209+
<tr>
210+
<td><span class="xref">IEnumerable</span>&lt;<span class="xref">IGraphVertex</span>&lt;T&gt;&gt;</td>
211+
<td></td>
212+
</tr>
213+
</tbody>
214+
</table>
215+
216+
188217
<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedGraph_2_VerticesCount_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedGraph`2.VerticesCount*"></a>
189218
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedGraph_2_VerticesCount" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedGraph`2.VerticesCount">VerticesCount</h4>
190219
<div class="markdown level1 summary"></div>
@@ -627,6 +656,10 @@ <h5 class="parameters">Parameters</h5>
627656
</tr>
628657
</tbody>
629658
</table>
659+
<h3 id="implements">Implements</h3>
660+
<div>
661+
<span class="xref">IEnumerable&lt;&gt;</span>
662+
</div>
630663
</article>
631664
</div>
632665

0 commit comments

Comments
 (0)