Skip to content

Commit

Permalink
API documentation update by build server
Browse files Browse the repository at this point in the history
  • Loading branch information
buildbot121 committed Apr 22, 2019
1 parent 19698c4 commit 0257651
Show file tree
Hide file tree
Showing 8 changed files with 230 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,16 @@ <h5>Inheritance</h5>
<div class="level0"><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object">Object</a></div>
<div class="level1"><span class="xref">DiGraph&lt;T&gt;</span></div>
</div>
<div classs="implements">
<h5>Implements</h5>
<div><span class="xref">IDiGraph</span>&lt;T&gt;</div>
<div><span class="xref">IEnumerable</span>&lt;T&gt;</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.html">Advanced.Algorithms.DataStructures.Graph.AdjacencyList</a></h6>
<h6><strong>Assembly</strong>: Advanced.Algorithms.dll</h6>
<h5 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class DiGraph&lt;T&gt; : IDiGraph&lt;T&gt;</code></pre>
<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>
</div>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand Down Expand Up @@ -181,6 +186,31 @@ <h5 class="propertyValue">Property Value</h5>
</table>


<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_VerticesAsEnumberable_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.VerticesAsEnumberable*"></a>
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_VerticesAsEnumberable" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.VerticesAsEnumberable">VerticesAsEnumberable</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IEnumerable&lt;IGraphVertex&lt;T&gt;&gt; VerticesAsEnumberable { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">IEnumerable</span>&lt;<span class="xref">IGraphVertex</span>&lt;T&gt;&gt;</td>
<td></td>
</tr>
</tbody>
</table>


<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_VerticesCount_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.VerticesCount*"></a>
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraph_1_VerticesCount" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.DiGraph`1.VerticesCount">VerticesCount</h4>
<div class="markdown level1 summary"></div>
Expand Down Expand Up @@ -659,6 +689,13 @@ <h5 class="parameters">Parameters</h5>
</tr>
</tbody>
</table>
<h3 id="implements">Implements</h3>
<div>
<span class="xref">IDiGraph&lt;&gt;</span>
</div>
<div>
<span class="xref">IEnumerable&lt;&gt;</span>
</div>
</article>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,14 @@ <h5>Inheritance</h5>
</div>
<div classs="implements">
<h5>Implements</h5>
<div><span class="xref">IGraphVertex</span>&lt;T&gt;</div>
<div><span class="xref">IEnumerable</span>&lt;T&gt;</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.html">Advanced.Algorithms.DataStructures.Graph.AdjacencyList</a></h6>
<h6><strong>Assembly</strong>: Advanced.Algorithms.dll</h6>
<h5 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_DiGraphVertex_1_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class DiGraphVertex&lt;T&gt; : IDiGraphVertex&lt;T&gt;, IEnumerable&lt;T&gt;</code></pre>
<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>
</div>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand Down Expand Up @@ -343,6 +344,9 @@ <h5 class="returns">Returns</h5>
</tbody>
</table>
<h3 id="implements">Implements</h3>
<div>
<span class="xref">IGraphVertex&lt;&gt;</span>
</div>
<div>
<span class="xref">IEnumerable&lt;&gt;</span>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,15 @@ <h5>Inheritance</h5>
<div class="level0"><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object">Object</a></div>
<div class="level1"><span class="xref">Graph&lt;T&gt;</span></div>
</div>
<div classs="implements">
<h5>Implements</h5>
<div><span class="xref">IEnumerable</span>&lt;T&gt;</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.html">Advanced.Algorithms.DataStructures.Graph.AdjacencyList</a></h6>
<h6><strong>Assembly</strong>: Advanced.Algorithms.dll</h6>
<h5 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class Graph&lt;T&gt; : IGraph&lt;T&gt;</code></pre>
<pre><code class="lang-csharp hljs">public class Graph&lt;T&gt; : IGraph&lt;T&gt;, IEnumerable&lt;T&gt;</code></pre>
</div>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand Down Expand Up @@ -181,6 +185,31 @@ <h5 class="propertyValue">Property Value</h5>
</table>


<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_VerticesAsEnumberable_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.VerticesAsEnumberable*"></a>
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_VerticesAsEnumberable" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.VerticesAsEnumberable">VerticesAsEnumberable</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IEnumerable&lt;IGraphVertex&lt;T&gt;&gt; VerticesAsEnumberable { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">IEnumerable</span>&lt;<span class="xref">IGraphVertex</span>&lt;T&gt;&gt;</td>
<td></td>
</tr>
</tbody>
</table>


<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_VerticesCount_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.VerticesCount*"></a>
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_Graph_1_VerticesCount" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.Graph`1.VerticesCount">VerticesCount</h4>
<div class="markdown level1 summary"></div>
Expand Down Expand Up @@ -617,6 +646,10 @@ <h5 class="parameters">Parameters</h5>
</tr>
</tbody>
</table>
<h3 id="implements">Implements</h3>
<div>
<span class="xref">IEnumerable&lt;&gt;</span>
</div>
</article>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,16 @@ <h5>Inheritance</h5>
<div class="level0"><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object">Object</a></div>
<div class="level1"><span class="xref">WeightedDiGraph&lt;T, TW&gt;</span></div>
</div>
<div classs="implements">
<h5>Implements</h5>
<div><span class="xref">IGraph</span>&lt;T&gt;</div>
<div><span class="xref">IEnumerable</span>&lt;T&gt;</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.html">Advanced.Algorithms.DataStructures.Graph.AdjacencyList</a></h6>
<h6><strong>Assembly</strong>: Advanced.Algorithms.dll</h6>
<h5 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class WeightedDiGraph&lt;T, TW&gt; : IDiGraph&lt;T&gt; where TW : IComparable</code></pre>
<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>
</div>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand Down Expand Up @@ -185,6 +190,31 @@ <h5 class="propertyValue">Property Value</h5>
</table>


<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_VerticesAsEnumberable_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.VerticesAsEnumberable*"></a>
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_VerticesAsEnumberable" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.VerticesAsEnumberable">VerticesAsEnumberable</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IEnumerable&lt;IGraphVertex&lt;T&gt;&gt; VerticesAsEnumberable { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">IEnumerable</span>&lt;<span class="xref">IGraphVertex</span>&lt;T&gt;&gt;</td>
<td></td>
</tr>
</tbody>
</table>


<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_VerticesCount_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.VerticesCount*"></a>
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2_VerticesCount" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedDiGraph`2.VerticesCount">VerticesCount</h4>
<div class="markdown level1 summary"></div>
Expand Down Expand Up @@ -438,7 +468,7 @@ <h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraph_2
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IDiGraphVertex&lt;T&gt; GetVertex(T value)</code></pre>
<pre><code class="lang-csharp hljs">public IDiGraphVertex&lt;T&gt; GetVertex(T key)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand All @@ -452,7 +482,7 @@ <h5 class="parameters">Parameters</h5>
<tbody>
<tr>
<td><span class="xref">T</span></td>
<td><span class="parametername">value</span></td>
<td><span class="parametername">key</span></td>
<td></td>
</tr>
</tbody>
Expand Down Expand Up @@ -668,6 +698,13 @@ <h5 class="parameters">Parameters</h5>
</tr>
</tbody>
</table>
<h3 id="implements">Implements</h3>
<div>
<span class="xref">IGraph&lt;&gt;</span>
</div>
<div>
<span class="xref">IEnumerable&lt;&gt;</span>
</div>
</article>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,14 @@ <h5>Inheritance</h5>
</div>
<div classs="implements">
<h5>Implements</h5>
<div><span class="xref">IGraphVertex</span>&lt;T&gt;</div>
<div><span class="xref">IEnumerable</span>&lt;T&gt;</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.html">Advanced.Algorithms.DataStructures.Graph.AdjacencyList</a></h6>
<h6><strong>Assembly</strong>: Advanced.Algorithms.dll</h6>
<h5 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedDiGraphVertex_2_syntax">Syntax</h5>
<div class="codewrapper">
<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>
<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>
</div>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand Down Expand Up @@ -347,6 +348,9 @@ <h5 class="returns">Returns</h5>
</tbody>
</table>
<h3 id="implements">Implements</h3>
<div>
<span class="xref">IGraphVertex&lt;&gt;</span>
</div>
<div>
<span class="xref">IEnumerable&lt;&gt;</span>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,15 @@ <h5>Inheritance</h5>
<div class="level0"><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.object">Object</a></div>
<div class="level1"><span class="xref">WeightedGraph&lt;T, TW&gt;</span></div>
</div>
<div classs="implements">
<h5>Implements</h5>
<div><span class="xref">IEnumerable</span>&lt;T&gt;</div>
</div>
<h6><strong>Namespace</strong>: <a class="xref" href="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.html">Advanced.Algorithms.DataStructures.Graph.AdjacencyList</a></h6>
<h6><strong>Assembly</strong>: Advanced.Algorithms.dll</h6>
<h5 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedGraph_2_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class WeightedGraph&lt;T, TW&gt; : IGraph&lt;T&gt; where TW : IComparable</code></pre>
<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>
</div>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand Down Expand Up @@ -185,6 +189,31 @@ <h5 class="propertyValue">Property Value</h5>
</table>


<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedGraph_2_VerticesAsEnumberable_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedGraph`2.VerticesAsEnumberable*"></a>
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedGraph_2_VerticesAsEnumberable" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedGraph`2.VerticesAsEnumberable">VerticesAsEnumberable</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public IEnumerable&lt;IGraphVertex&lt;T&gt;&gt; VerticesAsEnumberable { get; }</code></pre>
</div>
<h5 class="propertyValue">Property Value</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">IEnumerable</span>&lt;<span class="xref">IGraphVertex</span>&lt;T&gt;&gt;</td>
<td></td>
</tr>
</tbody>
</table>


<a id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedGraph_2_VerticesCount_" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedGraph`2.VerticesCount*"></a>
<h4 id="Advanced_Algorithms_DataStructures_Graph_AdjacencyList_WeightedGraph_2_VerticesCount" data-uid="Advanced.Algorithms.DataStructures.Graph.AdjacencyList.WeightedGraph`2.VerticesCount">VerticesCount</h4>
<div class="markdown level1 summary"></div>
Expand Down Expand Up @@ -627,6 +656,10 @@ <h5 class="parameters">Parameters</h5>
</tr>
</tbody>
</table>
<h3 id="implements">Implements</h3>
<div>
<span class="xref">IEnumerable&lt;&gt;</span>
</div>
</article>
</div>

Expand Down
Loading

0 comments on commit 0257651

Please sign in to comment.