Skip to content

Commit 5212383

Browse files
author
buildbot121
committed
API documentation update by build server
1 parent 42bf659 commit 5212383

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

docs/api/Advanced.Algorithms.DataStructures.ArrayList-1.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,18 @@ <h5 class="parameters">Parameters</h5>
315315
</table>
316316

317317

318+
<a id="Advanced_Algorithms_DataStructures_ArrayList_1_Clear_" data-uid="Advanced.Algorithms.DataStructures.ArrayList`1.Clear*"></a>
319+
<h4 id="Advanced_Algorithms_DataStructures_ArrayList_1_Clear" data-uid="Advanced.Algorithms.DataStructures.ArrayList`1.Clear">Clear()</h4>
320+
<div class="markdown level1 summary"><p>Clears the array.
321+
Time complexity: O(1).</p>
322+
</div>
323+
<div class="markdown level1 conceptual"></div>
324+
<h5 class="decalaration">Declaration</h5>
325+
<div class="codewrapper">
326+
<pre><code class="lang-csharp hljs">public void Clear()</code></pre>
327+
</div>
328+
329+
318330
<a id="Advanced_Algorithms_DataStructures_ArrayList_1_GetEnumerator_" data-uid="Advanced.Algorithms.DataStructures.ArrayList`1.GetEnumerator*"></a>
319331
<h4 id="Advanced_Algorithms_DataStructures_ArrayList_1_GetEnumerator" data-uid="Advanced.Algorithms.DataStructures.ArrayList`1.GetEnumerator">GetEnumerator()</h4>
320332
<div class="markdown level1 summary"></div>

docs/index.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"api/Advanced.Algorithms.DataStructures.ArrayList-1.html": {
5353
"href": "api/Advanced.Algorithms.DataStructures.ArrayList-1.html",
5454
"title": "Class ArrayList<T> | Advanced Algorithms",
55-
"keywords": "Class ArrayList<T> A self expanding array implementation. Inheritance Object ArrayList<T> Implements IEnumerable <T> IEnumerable Inherited Members Object.ToString() Object.Equals(Object) Object.Equals(Object, Object) Object.ReferenceEquals(Object, Object) Object.GetHashCode() Object.GetType() Object.MemberwiseClone() Namespace : Advanced.Algorithms.DataStructures Assembly : Advanced.Algorithms.dll Syntax public class ArrayList<T> : IEnumerable<T>, IEnumerable Type Parameters Name Description T The datatype of this ArrayList. Constructors ArrayList(IEnumerable<T>) Constructor. TimeComplexity: O(1) if initial is empty otherwise O(n). Declaration public ArrayList(IEnumerable<T> initial) Parameters Type Name Description IEnumerable <T> initial Initial values if any. ArrayList(Int32, IEnumerable<T>) Constructor. TimeComplexity: O(1) if initial is empty otherwise O(n). Declaration public ArrayList(int initalArraySize = 2, IEnumerable<T> initial = null) Parameters Type Name Description Int32 initalArraySize The initial array size. IEnumerable <T> initial Initial values if any. Properties Item[Int32] Indexed access to array. Time Complexity: O(1). Declaration public T this[int index] { get; set; } Parameters Type Name Description Int32 index The index to write or read. Property Value Type Description T Length Declaration public int Length { get; } Property Value Type Description Int32 Methods Add(T) Add a new item to this array list. Time complexity: O(1) amortized. Declaration public void Add(T item) Parameters Type Name Description T item GetEnumerator() Declaration public IEnumerator<T> GetEnumerator() Returns Type Description IEnumerator <T> InsertAt(Int32, T) Declaration public void InsertAt(int index, T item) Parameters Type Name Description Int32 index T item RemoveAt(Int32) Remove the item at given index. Time complexity: O(1) amortized. Declaration public void RemoveAt(int i) Parameters Type Name Description Int32 i The index to remove at. Explicit Interface Implementations IEnumerable.GetEnumerator() Declaration IEnumerator IEnumerable.GetEnumerator() Returns Type Description IEnumerator Implements System.Collections.Generic.IEnumerable<T> System.Collections.IEnumerable"
55+
"keywords": "Class ArrayList<T> A self expanding array implementation. Inheritance Object ArrayList<T> Implements IEnumerable <T> IEnumerable Inherited Members Object.ToString() Object.Equals(Object) Object.Equals(Object, Object) Object.ReferenceEquals(Object, Object) Object.GetHashCode() Object.GetType() Object.MemberwiseClone() Namespace : Advanced.Algorithms.DataStructures Assembly : Advanced.Algorithms.dll Syntax public class ArrayList<T> : IEnumerable<T>, IEnumerable Type Parameters Name Description T The datatype of this ArrayList. Constructors ArrayList(IEnumerable<T>) Constructor. TimeComplexity: O(1) if initial is empty otherwise O(n). Declaration public ArrayList(IEnumerable<T> initial) Parameters Type Name Description IEnumerable <T> initial Initial values if any. ArrayList(Int32, IEnumerable<T>) Constructor. TimeComplexity: O(1) if initial is empty otherwise O(n). Declaration public ArrayList(int initalArraySize = 2, IEnumerable<T> initial = null) Parameters Type Name Description Int32 initalArraySize The initial array size. IEnumerable <T> initial Initial values if any. Properties Item[Int32] Indexed access to array. Time Complexity: O(1). Declaration public T this[int index] { get; set; } Parameters Type Name Description Int32 index The index to write or read. Property Value Type Description T Length Declaration public int Length { get; } Property Value Type Description Int32 Methods Add(T) Add a new item to this array list. Time complexity: O(1) amortized. Declaration public void Add(T item) Parameters Type Name Description T item Clear() Clears the array. Time complexity: O(1). Declaration public void Clear() GetEnumerator() Declaration public IEnumerator<T> GetEnumerator() Returns Type Description IEnumerator <T> InsertAt(Int32, T) Declaration public void InsertAt(int index, T item) Parameters Type Name Description Int32 index T item RemoveAt(Int32) Remove the item at given index. Time complexity: O(1) amortized. Declaration public void RemoveAt(int i) Parameters Type Name Description Int32 i The index to remove at. Explicit Interface Implementations IEnumerable.GetEnumerator() Declaration IEnumerator IEnumerable.GetEnumerator() Returns Type Description IEnumerator Implements System.Collections.Generic.IEnumerable<T> System.Collections.IEnumerable"
5656
},
5757
"api/Advanced.Algorithms.DataStructures.AVLTree-1.html": {
5858
"href": "api/Advanced.Algorithms.DataStructures.AVLTree-1.html",

docs/xrefmap.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,23 @@ references:
241241
fullName.vb: Advanced.Algorithms.DataStructures.ArrayList(Of T).Add
242242
nameWithType: ArrayList<T>.Add
243243
nameWithType.vb: ArrayList(Of T).Add
244+
- uid: Advanced.Algorithms.DataStructures.ArrayList`1.Clear
245+
name: Clear()
246+
href: api/Advanced.Algorithms.DataStructures.ArrayList-1.html#Advanced_Algorithms_DataStructures_ArrayList_1_Clear
247+
commentId: M:Advanced.Algorithms.DataStructures.ArrayList`1.Clear
248+
fullName: Advanced.Algorithms.DataStructures.ArrayList<T>.Clear()
249+
fullName.vb: Advanced.Algorithms.DataStructures.ArrayList(Of T).Clear()
250+
nameWithType: ArrayList<T>.Clear()
251+
nameWithType.vb: ArrayList(Of T).Clear()
252+
- uid: Advanced.Algorithms.DataStructures.ArrayList`1.Clear*
253+
name: Clear
254+
href: api/Advanced.Algorithms.DataStructures.ArrayList-1.html#Advanced_Algorithms_DataStructures_ArrayList_1_Clear_
255+
commentId: Overload:Advanced.Algorithms.DataStructures.ArrayList`1.Clear
256+
isSpec: "True"
257+
fullName: Advanced.Algorithms.DataStructures.ArrayList<T>.Clear
258+
fullName.vb: Advanced.Algorithms.DataStructures.ArrayList(Of T).Clear
259+
nameWithType: ArrayList<T>.Clear
260+
nameWithType.vb: ArrayList(Of T).Clear
244261
- uid: Advanced.Algorithms.DataStructures.ArrayList`1.GetEnumerator
245262
name: GetEnumerator()
246263
href: api/Advanced.Algorithms.DataStructures.ArrayList-1.html#Advanced_Algorithms_DataStructures_ArrayList_1_GetEnumerator

0 commit comments

Comments
 (0)