Skip to content

Commit 95be046

Browse files
author
buildbot121
committed
API documentation update by build server
1 parent 8fe58c4 commit 95be046

5 files changed

+472
-6
lines changed

docs/api/Advanced.Algorithms.DataStructures.Foundation.SortedDictionary-2.html

Lines changed: 102 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,49 @@ <h5 class="returns">Returns</h5>
315315
</table>
316316

317317

318+
<a id="Advanced_Algorithms_DataStructures_Foundation_SortedDictionary_2_ElementAt_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedDictionary`2.ElementAt*"></a>
319+
<h4 id="Advanced_Algorithms_DataStructures_Foundation_SortedDictionary_2_ElementAt_System_Int32_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedDictionary`2.ElementAt(System.Int32)">ElementAt(Int32)</h4>
320+
<div class="markdown level1 summary"><p>Time complexity: O(log(n))</p>
321+
</div>
322+
<div class="markdown level1 conceptual"></div>
323+
<h5 class="decalaration">Declaration</h5>
324+
<div class="codewrapper">
325+
<pre><code class="lang-csharp hljs">public KeyValuePair&lt;K, V&gt; ElementAt(int index)</code></pre>
326+
</div>
327+
<h5 class="parameters">Parameters</h5>
328+
<table class="table table-bordered table-striped table-condensed">
329+
<thead>
330+
<tr>
331+
<th>Type</th>
332+
<th>Name</th>
333+
<th>Description</th>
334+
</tr>
335+
</thead>
336+
<tbody>
337+
<tr>
338+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td>
339+
<td><span class="parametername">index</span></td>
340+
<td></td>
341+
</tr>
342+
</tbody>
343+
</table>
344+
<h5 class="returns">Returns</h5>
345+
<table class="table table-bordered table-striped table-condensed">
346+
<thead>
347+
<tr>
348+
<th>Type</th>
349+
<th>Description</th>
350+
</tr>
351+
</thead>
352+
<tbody>
353+
<tr>
354+
<td><span class="xref">KeyValuePair</span>&lt;K, V&gt;</td>
355+
<td></td>
356+
</tr>
357+
</tbody>
358+
</table>
359+
360+
318361
<a id="Advanced_Algorithms_DataStructures_Foundation_SortedDictionary_2_GetEnumerator_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedDictionary`2.GetEnumerator*"></a>
319362
<h4 id="Advanced_Algorithms_DataStructures_Foundation_SortedDictionary_2_GetEnumerator" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedDictionary`2.GetEnumerator">GetEnumerator()</h4>
320363
<div class="markdown level1 summary"></div>
@@ -340,6 +383,49 @@ <h5 class="returns">Returns</h5>
340383
</table>
341384

342385

386+
<a id="Advanced_Algorithms_DataStructures_Foundation_SortedDictionary_2_IndexOf_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedDictionary`2.IndexOf*"></a>
387+
<h4 id="Advanced_Algorithms_DataStructures_Foundation_SortedDictionary_2_IndexOf__0_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedDictionary`2.IndexOf(`0)">IndexOf(K)</h4>
388+
<div class="markdown level1 summary"><p>Time complexity: O(log(n))</p>
389+
</div>
390+
<div class="markdown level1 conceptual"></div>
391+
<h5 class="decalaration">Declaration</h5>
392+
<div class="codewrapper">
393+
<pre><code class="lang-csharp hljs">public int IndexOf(K key)</code></pre>
394+
</div>
395+
<h5 class="parameters">Parameters</h5>
396+
<table class="table table-bordered table-striped table-condensed">
397+
<thead>
398+
<tr>
399+
<th>Type</th>
400+
<th>Name</th>
401+
<th>Description</th>
402+
</tr>
403+
</thead>
404+
<tbody>
405+
<tr>
406+
<td><span class="xref">K</span></td>
407+
<td><span class="parametername">key</span></td>
408+
<td></td>
409+
</tr>
410+
</tbody>
411+
</table>
412+
<h5 class="returns">Returns</h5>
413+
<table class="table table-bordered table-striped table-condensed">
414+
<thead>
415+
<tr>
416+
<th>Type</th>
417+
<th>Description</th>
418+
</tr>
419+
</thead>
420+
<tbody>
421+
<tr>
422+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td>
423+
<td></td>
424+
</tr>
425+
</tbody>
426+
</table>
427+
428+
343429
<a id="Advanced_Algorithms_DataStructures_Foundation_SortedDictionary_2_NextHigher_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedDictionary`2.NextHigher*"></a>
344430
<h4 id="Advanced_Algorithms_DataStructures_Foundation_SortedDictionary_2_NextHigher__0_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedDictionary`2.NextHigher(`0)">NextHigher(K)</h4>
345431
<div class="markdown level1 summary"><p>Return the next higher key-value pair after given key in this dictionary.
@@ -438,7 +524,7 @@ <h4 id="Advanced_Algorithms_DataStructures_Foundation_SortedDictionary_2_Remove_
438524
<div class="markdown level1 conceptual"></div>
439525
<h5 class="decalaration">Declaration</h5>
440526
<div class="codewrapper">
441-
<pre><code class="lang-csharp hljs">public void Remove(K key)</code></pre>
527+
<pre><code class="lang-csharp hljs">public bool Remove(K key)</code></pre>
442528
</div>
443529
<h5 class="parameters">Parameters</h5>
444530
<table class="table table-bordered table-striped table-condensed">
@@ -457,6 +543,21 @@ <h5 class="parameters">Parameters</h5>
457543
</tr>
458544
</tbody>
459545
</table>
546+
<h5 class="returns">Returns</h5>
547+
<table class="table table-bordered table-striped table-condensed">
548+
<thead>
549+
<tr>
550+
<th>Type</th>
551+
<th>Description</th>
552+
</tr>
553+
</thead>
554+
<tbody>
555+
<tr>
556+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.boolean">Boolean</a></td>
557+
<td></td>
558+
</tr>
559+
</tbody>
560+
</table>
460561
</article>
461562
</div>
462563

docs/api/Advanced.Algorithms.DataStructures.Foundation.SortedHashSet-1.html

Lines changed: 145 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,49 @@ <h5 class="propertyValue">Property Value</h5>
182182
</tr>
183183
</tbody>
184184
</table>
185+
186+
187+
<a id="Advanced_Algorithms_DataStructures_Foundation_SortedHashSet_1_Item_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedHashSet`1.Item*"></a>
188+
<h4 id="Advanced_Algorithms_DataStructures_Foundation_SortedHashSet_1_Item_System_Int32_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedHashSet`1.Item(System.Int32)">Item[Int32]</h4>
189+
<div class="markdown level1 summary"><p>Time complexity: O(log(n))</p>
190+
</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 T this[int index] { get; }</code></pre>
195+
</div>
196+
<h5 class="parameters">Parameters</h5>
197+
<table class="table table-bordered table-striped table-condensed">
198+
<thead>
199+
<tr>
200+
<th>Type</th>
201+
<th>Name</th>
202+
<th>Description</th>
203+
</tr>
204+
</thead>
205+
<tbody>
206+
<tr>
207+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td>
208+
<td><span class="parametername">index</span></td>
209+
<td></td>
210+
</tr>
211+
</tbody>
212+
</table>
213+
<h5 class="propertyValue">Property Value</h5>
214+
<table class="table table-bordered table-striped table-condensed">
215+
<thead>
216+
<tr>
217+
<th>Type</th>
218+
<th>Description</th>
219+
</tr>
220+
</thead>
221+
<tbody>
222+
<tr>
223+
<td><span class="xref">T</span></td>
224+
<td></td>
225+
</tr>
226+
</tbody>
227+
</table>
185228
<h3 id="methods">Methods
186229
</h3>
187230

@@ -262,6 +305,49 @@ <h5 class="returns">Returns</h5>
262305
</table>
263306

264307

308+
<a id="Advanced_Algorithms_DataStructures_Foundation_SortedHashSet_1_ElementAt_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedHashSet`1.ElementAt*"></a>
309+
<h4 id="Advanced_Algorithms_DataStructures_Foundation_SortedHashSet_1_ElementAt_System_Int32_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedHashSet`1.ElementAt(System.Int32)">ElementAt(Int32)</h4>
310+
<div class="markdown level1 summary"><p>Time complexity: O(log(n))</p>
311+
</div>
312+
<div class="markdown level1 conceptual"></div>
313+
<h5 class="decalaration">Declaration</h5>
314+
<div class="codewrapper">
315+
<pre><code class="lang-csharp hljs">public T ElementAt(int index)</code></pre>
316+
</div>
317+
<h5 class="parameters">Parameters</h5>
318+
<table class="table table-bordered table-striped table-condensed">
319+
<thead>
320+
<tr>
321+
<th>Type</th>
322+
<th>Name</th>
323+
<th>Description</th>
324+
</tr>
325+
</thead>
326+
<tbody>
327+
<tr>
328+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td>
329+
<td><span class="parametername">index</span></td>
330+
<td></td>
331+
</tr>
332+
</tbody>
333+
</table>
334+
<h5 class="returns">Returns</h5>
335+
<table class="table table-bordered table-striped table-condensed">
336+
<thead>
337+
<tr>
338+
<th>Type</th>
339+
<th>Description</th>
340+
</tr>
341+
</thead>
342+
<tbody>
343+
<tr>
344+
<td><span class="xref">T</span></td>
345+
<td></td>
346+
</tr>
347+
</tbody>
348+
</table>
349+
350+
265351
<a id="Advanced_Algorithms_DataStructures_Foundation_SortedHashSet_1_GetEnumerator_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedHashSet`1.GetEnumerator*"></a>
266352
<h4 id="Advanced_Algorithms_DataStructures_Foundation_SortedHashSet_1_GetEnumerator" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedHashSet`1.GetEnumerator">GetEnumerator()</h4>
267353
<div class="markdown level1 summary"></div>
@@ -287,6 +373,49 @@ <h5 class="returns">Returns</h5>
287373
</table>
288374

289375

376+
<a id="Advanced_Algorithms_DataStructures_Foundation_SortedHashSet_1_IndexOf_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedHashSet`1.IndexOf*"></a>
377+
<h4 id="Advanced_Algorithms_DataStructures_Foundation_SortedHashSet_1_IndexOf__0_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedHashSet`1.IndexOf(`0)">IndexOf(T)</h4>
378+
<div class="markdown level1 summary"><p>Time complexity: O(log(n))</p>
379+
</div>
380+
<div class="markdown level1 conceptual"></div>
381+
<h5 class="decalaration">Declaration</h5>
382+
<div class="codewrapper">
383+
<pre><code class="lang-csharp hljs">public int IndexOf(T key)</code></pre>
384+
</div>
385+
<h5 class="parameters">Parameters</h5>
386+
<table class="table table-bordered table-striped table-condensed">
387+
<thead>
388+
<tr>
389+
<th>Type</th>
390+
<th>Name</th>
391+
<th>Description</th>
392+
</tr>
393+
</thead>
394+
<tbody>
395+
<tr>
396+
<td><span class="xref">T</span></td>
397+
<td><span class="parametername">key</span></td>
398+
<td></td>
399+
</tr>
400+
</tbody>
401+
</table>
402+
<h5 class="returns">Returns</h5>
403+
<table class="table table-bordered table-striped table-condensed">
404+
<thead>
405+
<tr>
406+
<th>Type</th>
407+
<th>Description</th>
408+
</tr>
409+
</thead>
410+
<tbody>
411+
<tr>
412+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int32">Int32</a></td>
413+
<td></td>
414+
</tr>
415+
</tbody>
416+
</table>
417+
418+
290419
<a id="Advanced_Algorithms_DataStructures_Foundation_SortedHashSet_1_NextHigher_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedHashSet`1.NextHigher*"></a>
291420
<h4 id="Advanced_Algorithms_DataStructures_Foundation_SortedHashSet_1_NextHigher__0_" data-uid="Advanced.Algorithms.DataStructures.Foundation.SortedHashSet`1.NextHigher(`0)">NextHigher(T)</h4>
292421
<div class="markdown level1 summary"><p>Return the next higher value after given value in this hashset.
@@ -385,7 +514,7 @@ <h4 id="Advanced_Algorithms_DataStructures_Foundation_SortedHashSet_1_Remove__0_
385514
<div class="markdown level1 conceptual"></div>
386515
<h5 class="decalaration">Declaration</h5>
387516
<div class="codewrapper">
388-
<pre><code class="lang-csharp hljs">public void Remove(T value)</code></pre>
517+
<pre><code class="lang-csharp hljs">public bool Remove(T value)</code></pre>
389518
</div>
390519
<h5 class="parameters">Parameters</h5>
391520
<table class="table table-bordered table-striped table-condensed">
@@ -405,6 +534,21 @@ <h5 class="parameters">Parameters</h5>
405534
</tr>
406535
</tbody>
407536
</table>
537+
<h5 class="returns">Returns</h5>
538+
<table class="table table-bordered table-striped table-condensed">
539+
<thead>
540+
<tr>
541+
<th>Type</th>
542+
<th>Description</th>
543+
</tr>
544+
</thead>
545+
<tbody>
546+
<tr>
547+
<td><a class="xref" href="https://docs.microsoft.com/dotnet/api/system.boolean">Boolean</a></td>
548+
<td></td>
549+
</tr>
550+
</tbody>
551+
</table>
408552
</article>
409553
</div>
410554

0 commit comments

Comments
 (0)