Files
Misaki.HighPerformance/docs/documents/api/Misaki.HighPerformance.Collections.DynamicArray-1.yml

2057 lines
76 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: Misaki.HighPerformance.Collections.DynamicArray`1
commentId: T:Misaki.HighPerformance.Collections.DynamicArray`1
id: DynamicArray`1
parent: Misaki.HighPerformance.Collections
children:
- Misaki.HighPerformance.Collections.DynamicArray`1.#ctor(System.Int32)
- Misaki.HighPerformance.Collections.DynamicArray`1.Add(`0)
- Misaki.HighPerformance.Collections.DynamicArray`1.AsSpan
- Misaki.HighPerformance.Collections.DynamicArray`1.Capacity
- Misaki.HighPerformance.Collections.DynamicArray`1.Clear
- Misaki.HighPerformance.Collections.DynamicArray`1.Contains(`0)
- Misaki.HighPerformance.Collections.DynamicArray`1.CopyTo(`0[],System.Int32)
- Misaki.HighPerformance.Collections.DynamicArray`1.Count
- Misaki.HighPerformance.Collections.DynamicArray`1.GetEnumerator
- Misaki.HighPerformance.Collections.DynamicArray`1.IndexOf(`0)
- Misaki.HighPerformance.Collections.DynamicArray`1.Insert(System.Int32,`0)
- Misaki.HighPerformance.Collections.DynamicArray`1.IsReadOnly
- Misaki.HighPerformance.Collections.DynamicArray`1.Item(System.Int32)
- Misaki.HighPerformance.Collections.DynamicArray`1.Item(System.UInt32)
- Misaki.HighPerformance.Collections.DynamicArray`1.Remove(`0)
- Misaki.HighPerformance.Collections.DynamicArray`1.RemoveAt(System.Int32)
langs:
- csharp
- vb
name: DynamicArray<T>
nameWithType: DynamicArray<T>
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>
type: Class
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: DynamicArray
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 8
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: A dynamically sized array that grows as elements are added and exposes span access to the active range.
example: []
syntax:
content: 'public class DynamicArray<T> : IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable'
typeParameters:
- id: T
description: Represents a type that can be stored in the dynamic array.
content.vb: Public Class DynamicArray(Of T) Implements IList(Of T), ICollection(Of T), IEnumerable(Of T), IEnumerable
inheritance:
- System.Object
implements:
- System.Collections.Generic.IList{{T}}
- System.Collections.Generic.ICollection{{T}}
- System.Collections.Generic.IEnumerable{{T}}
- System.Collections.IEnumerable
inheritedMembers:
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
nameWithType.vb: DynamicArray(Of T)
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T)
name.vb: DynamicArray(Of T)
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Item(System.Int32)
commentId: P:Misaki.HighPerformance.Collections.DynamicArray`1.Item(System.Int32)
id: Item(System.Int32)
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: this[int]
nameWithType: DynamicArray<T>.this[int]
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.this[int]
type: Property
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: this[]
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 16
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Gets a reference to the element at the specified index.
example: []
syntax:
content: public ref T this[int index] { get; }
parameters:
- id: index
type: System.Int32
return:
type: '{T}'
content.vb: Public ReadOnly Default ByRef Property this[](index As Integer) As T
overload: Misaki.HighPerformance.Collections.DynamicArray`1.Item*
nameWithType.vb: DynamicArray(Of T).this[](Integer)
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).this[](Integer)
name.vb: this[](Integer)
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Item(System.UInt32)
commentId: P:Misaki.HighPerformance.Collections.DynamicArray`1.Item(System.UInt32)
id: Item(System.UInt32)
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: this[uint]
nameWithType: DynamicArray<T>.this[uint]
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.this[uint]
type: Property
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: this[]
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 20
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Gets a reference to the element at the specified index.
example: []
syntax:
content: public ref T this[uint index] { get; }
parameters:
- id: index
type: System.UInt32
return:
type: '{T}'
content.vb: Public ReadOnly Default ByRef Property this[](index As UInteger) As T
overload: Misaki.HighPerformance.Collections.DynamicArray`1.Item*
nameWithType.vb: DynamicArray(Of T).this[](UInteger)
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).this[](UInteger)
name.vb: this[](UInteger)
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Count
commentId: P:Misaki.HighPerformance.Collections.DynamicArray`1.Count
id: Count
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: Count
nameWithType: DynamicArray<T>.Count
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Count
type: Property
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: Count
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 25
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Gets the number of elements currently stored in the array.
example: []
syntax:
content: public int Count { get; }
parameters: []
return:
type: System.Int32
content.vb: Public ReadOnly Property Count As Integer
overload: Misaki.HighPerformance.Collections.DynamicArray`1.Count*
implements:
- System.Collections.Generic.ICollection{{T}}.Count
nameWithType.vb: DynamicArray(Of T).Count
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Count
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.IsReadOnly
commentId: P:Misaki.HighPerformance.Collections.DynamicArray`1.IsReadOnly
id: IsReadOnly
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: IsReadOnly
nameWithType: DynamicArray<T>.IsReadOnly
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.IsReadOnly
type: Property
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: IsReadOnly
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 29
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Gets a value indicating whether the collection is read-only.
example: []
syntax:
content: public bool IsReadOnly { get; }
parameters: []
return:
type: System.Boolean
content.vb: Public ReadOnly Property IsReadOnly As Boolean
overload: Misaki.HighPerformance.Collections.DynamicArray`1.IsReadOnly*
implements:
- System.Collections.Generic.ICollection{{T}}.IsReadOnly
nameWithType.vb: DynamicArray(Of T).IsReadOnly
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).IsReadOnly
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Capacity
commentId: P:Misaki.HighPerformance.Collections.DynamicArray`1.Capacity
id: Capacity
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: Capacity
nameWithType: DynamicArray<T>.Capacity
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Capacity
type: Property
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: Capacity
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 34
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Gets or sets the allocated capacity of the underlying storage.
example: []
syntax:
content: public int Capacity { get; set; }
parameters: []
return:
type: System.Int32
content.vb: Public Property Capacity As Integer
overload: Misaki.HighPerformance.Collections.DynamicArray`1.Capacity*
nameWithType.vb: DynamicArray(Of T).Capacity
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Capacity
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.#ctor(System.Int32)
commentId: M:Misaki.HighPerformance.Collections.DynamicArray`1.#ctor(System.Int32)
id: '#ctor(System.Int32)'
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: DynamicArray(int)
nameWithType: DynamicArray<T>.DynamicArray(int)
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.DynamicArray(int)
type: Constructor
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: .ctor
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 61
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Initializes a new instance of <xref href="Misaki.HighPerformance.Collections.DynamicArray%601" data-throw-if-not-resolved="false"></xref> with the specified initial capacity.
example: []
syntax:
content: public DynamicArray(int initialCapacity = 4)
parameters:
- id: initialCapacity
type: System.Int32
description: The initial size of the backing array.
content.vb: Public Sub New(initialCapacity As Integer = 4)
overload: Misaki.HighPerformance.Collections.DynamicArray`1.#ctor*
nameWithType.vb: DynamicArray(Of T).New(Integer)
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).New(Integer)
name.vb: New(Integer)
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.GetEnumerator
commentId: M:Misaki.HighPerformance.Collections.DynamicArray`1.GetEnumerator
id: GetEnumerator
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: GetEnumerator()
nameWithType: DynamicArray<T>.GetEnumerator()
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.GetEnumerator()
type: Method
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: GetEnumerator
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 76
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Returns an enumerator that iterates over the stored elements.
example: []
syntax:
content: public IEnumerator<T> GetEnumerator()
return:
type: System.Collections.Generic.IEnumerator{{T}}
description: An enumerator for the collection.
content.vb: Public Function GetEnumerator() As IEnumerator(Of T)
overload: Misaki.HighPerformance.Collections.DynamicArray`1.GetEnumerator*
implements:
- System.Collections.Generic.IEnumerable{{T}}.GetEnumerator
nameWithType.vb: DynamicArray(Of T).GetEnumerator()
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).GetEnumerator()
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Add(`0)
commentId: M:Misaki.HighPerformance.Collections.DynamicArray`1.Add(`0)
id: Add(`0)
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: Add(T)
nameWithType: DynamicArray<T>.Add(T)
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Add(T)
type: Method
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: Add
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 104
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Adds an element to the end of the array.
example: []
syntax:
content: public void Add(T item)
parameters:
- id: item
type: '{T}'
description: The element to add.
content.vb: Public Sub Add(item As T)
overload: Misaki.HighPerformance.Collections.DynamicArray`1.Add*
implements:
- System.Collections.Generic.ICollection{{T}}.Add({T})
nameWithType.vb: DynamicArray(Of T).Add(T)
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Add(T)
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Insert(System.Int32,`0)
commentId: M:Misaki.HighPerformance.Collections.DynamicArray`1.Insert(System.Int32,`0)
id: Insert(System.Int32,`0)
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: Insert(int, T)
nameWithType: DynamicArray<T>.Insert(int, T)
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Insert(int, T)
type: Method
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: Insert
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 116
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Inserts an element at the specified index.
example: []
syntax:
content: public void Insert(int index, T item)
parameters:
- id: index
type: System.Int32
description: The position at which to insert the element.
- id: item
type: '{T}'
description: The element to insert.
content.vb: Public Sub Insert(index As Integer, item As T)
overload: Misaki.HighPerformance.Collections.DynamicArray`1.Insert*
exceptions:
- type: System.ArgumentOutOfRangeException
commentId: T:System.ArgumentOutOfRangeException
description: Thrown when the index is outside the valid range.
implements:
- System.Collections.Generic.IList{{T}}.Insert(System.Int32,{T})
nameWithType.vb: DynamicArray(Of T).Insert(Integer, T)
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Insert(Integer, T)
name.vb: Insert(Integer, T)
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Clear
commentId: M:Misaki.HighPerformance.Collections.DynamicArray`1.Clear
id: Clear
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: Clear()
nameWithType: DynamicArray<T>.Clear()
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Clear()
type: Method
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: Clear
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 133
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Removes all elements from the array.
example: []
syntax:
content: public void Clear()
content.vb: Public Sub Clear()
overload: Misaki.HighPerformance.Collections.DynamicArray`1.Clear*
implements:
- System.Collections.Generic.ICollection{{T}}.Clear
nameWithType.vb: DynamicArray(Of T).Clear()
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Clear()
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Contains(`0)
commentId: M:Misaki.HighPerformance.Collections.DynamicArray`1.Contains(`0)
id: Contains(`0)
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: Contains(T)
nameWithType: DynamicArray<T>.Contains(T)
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Contains(T)
type: Method
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: Contains
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 144
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Determines whether the specified item exists in the array.
example: []
syntax:
content: public bool Contains(T item)
parameters:
- id: item
type: '{T}'
description: The item to locate.
return:
type: System.Boolean
description: True if the item is found; otherwise, false.
content.vb: Public Function Contains(item As T) As Boolean
overload: Misaki.HighPerformance.Collections.DynamicArray`1.Contains*
implements:
- System.Collections.Generic.ICollection{{T}}.Contains({T})
nameWithType.vb: DynamicArray(Of T).Contains(T)
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Contains(T)
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.IndexOf(`0)
commentId: M:Misaki.HighPerformance.Collections.DynamicArray`1.IndexOf(`0)
id: IndexOf(`0)
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: IndexOf(T)
nameWithType: DynamicArray<T>.IndexOf(T)
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.IndexOf(T)
type: Method
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: IndexOf
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 154
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Searches for the specified item and returns its zero-based index.
example: []
syntax:
content: public int IndexOf(T item)
parameters:
- id: item
type: '{T}'
description: The item to locate.
return:
type: System.Int32
description: The zero-based index of the item if found; otherwise, -1.
content.vb: Public Function IndexOf(item As T) As Integer
overload: Misaki.HighPerformance.Collections.DynamicArray`1.IndexOf*
implements:
- System.Collections.Generic.IList{{T}}.IndexOf({T})
nameWithType.vb: DynamicArray(Of T).IndexOf(T)
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).IndexOf(T)
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.CopyTo(`0[],System.Int32)
commentId: M:Misaki.HighPerformance.Collections.DynamicArray`1.CopyTo(`0[],System.Int32)
id: CopyTo(`0[],System.Int32)
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: CopyTo(T[], int)
nameWithType: DynamicArray<T>.CopyTo(T[], int)
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.CopyTo(T[], int)
type: Method
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: CopyTo
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 172
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Copies the active elements to the specified array starting at the given index.
example: []
syntax:
content: public void CopyTo(T[] array, int arrayIndex)
parameters:
- id: array
type: '{T}[]'
description: The destination array.
- id: arrayIndex
type: System.Int32
description: The index in the destination array at which copying begins.
content.vb: Public Sub CopyTo(array As T(), arrayIndex As Integer)
overload: Misaki.HighPerformance.Collections.DynamicArray`1.CopyTo*
implements:
- System.Collections.Generic.ICollection{{T}}.CopyTo({T}[],System.Int32)
nameWithType.vb: DynamicArray(Of T).CopyTo(T(), Integer)
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).CopyTo(T(), Integer)
name.vb: CopyTo(T(), Integer)
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Remove(`0)
commentId: M:Misaki.HighPerformance.Collections.DynamicArray`1.Remove(`0)
id: Remove(`0)
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: Remove(T)
nameWithType: DynamicArray<T>.Remove(T)
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Remove(T)
type: Method
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: Remove
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 182
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Removes the first occurrence of the specified item.
example: []
syntax:
content: public bool Remove(T item)
parameters:
- id: item
type: '{T}'
description: The item to remove.
return:
type: System.Boolean
description: True if the item was removed; otherwise, false.
content.vb: Public Function Remove(item As T) As Boolean
overload: Misaki.HighPerformance.Collections.DynamicArray`1.Remove*
implements:
- System.Collections.Generic.ICollection{{T}}.Remove({T})
nameWithType.vb: DynamicArray(Of T).Remove(T)
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Remove(T)
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.RemoveAt(System.Int32)
commentId: M:Misaki.HighPerformance.Collections.DynamicArray`1.RemoveAt(System.Int32)
id: RemoveAt(System.Int32)
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: RemoveAt(int)
nameWithType: DynamicArray<T>.RemoveAt(int)
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.RemoveAt(int)
type: Method
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: RemoveAt
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 203
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Removes the element at the specified index.
example: []
syntax:
content: public void RemoveAt(int index)
parameters:
- id: index
type: System.Int32
description: The index of the element to remove.
content.vb: Public Sub RemoveAt(index As Integer)
overload: Misaki.HighPerformance.Collections.DynamicArray`1.RemoveAt*
exceptions:
- type: System.ArgumentOutOfRangeException
commentId: T:System.ArgumentOutOfRangeException
description: Thrown when the index is outside the valid range.
implements:
- System.Collections.Generic.IList{{T}}.RemoveAt(System.Int32)
nameWithType.vb: DynamicArray(Of T).RemoveAt(Integer)
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).RemoveAt(Integer)
name.vb: RemoveAt(Integer)
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.AsSpan
commentId: M:Misaki.HighPerformance.Collections.DynamicArray`1.AsSpan
id: AsSpan
parent: Misaki.HighPerformance.Collections.DynamicArray`1
langs:
- csharp
- vb
name: AsSpan()
nameWithType: DynamicArray<T>.AsSpan()
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.AsSpan()
type: Method
source:
remote:
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
branch: main
repo: https://git.personalnas.com/Misaki/Misaki.HighPerformance.git
id: AsSpan
path: src/Misaki.HighPerformance/Collections/DynamicArray.cs
startLine: 220
assemblies:
- Misaki.HighPerformance
namespace: Misaki.HighPerformance.Collections
summary: Returns a span over the active portion of the array.
example: []
syntax:
content: public Span<T> AsSpan()
return:
type: System.Span{{T}}
description: A span containing the stored elements.
content.vb: Public Function AsSpan() As Span(Of T)
overload: Misaki.HighPerformance.Collections.DynamicArray`1.AsSpan*
nameWithType.vb: DynamicArray(Of T).AsSpan()
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).AsSpan()
references:
- uid: Misaki.HighPerformance.Collections
commentId: N:Misaki.HighPerformance.Collections
href: Misaki.html
name: Misaki.HighPerformance.Collections
nameWithType: Misaki.HighPerformance.Collections
fullName: Misaki.HighPerformance.Collections
spec.csharp:
- uid: Misaki
name: Misaki
href: Misaki.html
- name: .
- uid: Misaki.HighPerformance
name: HighPerformance
href: Misaki.HighPerformance.html
- name: .
- uid: Misaki.HighPerformance.Collections
name: Collections
href: Misaki.HighPerformance.Collections.html
spec.vb:
- uid: Misaki
name: Misaki
href: Misaki.html
- name: .
- uid: Misaki.HighPerformance
name: HighPerformance
href: Misaki.HighPerformance.html
- name: .
- uid: Misaki.HighPerformance.Collections
name: Collections
href: Misaki.HighPerformance.Collections.html
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: System.Collections.Generic.IList{{T}}
commentId: T:System.Collections.Generic.IList{`0}
parent: System.Collections.Generic
definition: System.Collections.Generic.IList`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1
name: IList<T>
nameWithType: IList<T>
fullName: System.Collections.Generic.IList<T>
nameWithType.vb: IList(Of T)
fullName.vb: System.Collections.Generic.IList(Of T)
name.vb: IList(Of T)
spec.csharp:
- uid: System.Collections.Generic.IList`1
name: IList
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IList`1
name: IList
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Collections.Generic.ICollection{{T}}
commentId: T:System.Collections.Generic.ICollection{`0}
parent: System.Collections.Generic
definition: System.Collections.Generic.ICollection`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
name: ICollection<T>
nameWithType: ICollection<T>
fullName: System.Collections.Generic.ICollection<T>
nameWithType.vb: ICollection(Of T)
fullName.vb: System.Collections.Generic.ICollection(Of T)
name.vb: ICollection(Of T)
spec.csharp:
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Collections.Generic.IEnumerable{{T}}
commentId: T:System.Collections.Generic.IEnumerable{`0}
parent: System.Collections.Generic
definition: System.Collections.Generic.IEnumerable`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name: IEnumerable<T>
nameWithType: IEnumerable<T>
fullName: System.Collections.Generic.IEnumerable<T>
nameWithType.vb: IEnumerable(Of T)
fullName.vb: System.Collections.Generic.IEnumerable(Of T)
name.vb: IEnumerable(Of T)
spec.csharp:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Collections.IEnumerable
commentId: T:System.Collections.IEnumerable
parent: System.Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.ienumerable
name: IEnumerable
nameWithType: IEnumerable
fullName: System.Collections.IEnumerable
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: System.Collections.Generic.IList`1
commentId: T:System.Collections.Generic.IList`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1
name: IList<T>
nameWithType: IList<T>
fullName: System.Collections.Generic.IList<T>
nameWithType.vb: IList(Of T)
fullName.vb: System.Collections.Generic.IList(Of T)
name.vb: IList(Of T)
spec.csharp:
- uid: System.Collections.Generic.IList`1
name: IList
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IList`1
name: IList
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Collections.Generic
commentId: N:System.Collections.Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Collections.Generic
nameWithType: System.Collections.Generic
fullName: System.Collections.Generic
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
- uid: System.Collections.Generic.ICollection`1
commentId: T:System.Collections.Generic.ICollection`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
name: ICollection<T>
nameWithType: ICollection<T>
fullName: System.Collections.Generic.ICollection<T>
nameWithType.vb: ICollection(Of T)
fullName.vb: System.Collections.Generic.ICollection(Of T)
name.vb: ICollection(Of T)
spec.csharp:
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.ICollection`1
name: ICollection
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Collections.Generic.IEnumerable`1
commentId: T:System.Collections.Generic.IEnumerable`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
name: IEnumerable<T>
nameWithType: IEnumerable<T>
fullName: System.Collections.Generic.IEnumerable<T>
nameWithType.vb: IEnumerable(Of T)
fullName.vb: System.Collections.Generic.IEnumerable(Of T)
name.vb: IEnumerable(Of T)
spec.csharp:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1
name: IEnumerable
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Collections
commentId: N:System.Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Collections
nameWithType: System.Collections
fullName: System.Collections
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Item*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.Item
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_Item_System_Int32_
name: this
nameWithType: DynamicArray<T>.this
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.this
nameWithType.vb: DynamicArray(Of T).this[]
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).this[]
name.vb: this[]
- uid: System.Int32
commentId: T:System.Int32
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
name: int
nameWithType: int
fullName: int
nameWithType.vb: Integer
fullName.vb: Integer
name.vb: Integer
- uid: '{T}'
commentId: '!:T'
definition: T
name: T
nameWithType: T
fullName: T
- uid: T
name: T
nameWithType: T
fullName: T
- uid: System.UInt32
commentId: T:System.UInt32
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.uint32
name: uint
nameWithType: uint
fullName: uint
nameWithType.vb: UInteger
fullName.vb: UInteger
name.vb: UInteger
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Count*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.Count
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_Count
name: Count
nameWithType: DynamicArray<T>.Count
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Count
nameWithType.vb: DynamicArray(Of T).Count
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Count
- uid: System.Collections.Generic.ICollection{{T}}.Count
commentId: P:System.Collections.Generic.ICollection{`0}.Count
parent: System.Collections.Generic.ICollection{{T}}
definition: System.Collections.Generic.ICollection`1.Count
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.count
name: Count
nameWithType: ICollection<T>.Count
fullName: System.Collections.Generic.ICollection<T>.Count
nameWithType.vb: ICollection(Of T).Count
fullName.vb: System.Collections.Generic.ICollection(Of T).Count
- uid: System.Collections.Generic.ICollection`1.Count
commentId: P:System.Collections.Generic.ICollection`1.Count
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.count
name: Count
nameWithType: ICollection<T>.Count
fullName: System.Collections.Generic.ICollection<T>.Count
nameWithType.vb: ICollection(Of T).Count
fullName.vb: System.Collections.Generic.ICollection(Of T).Count
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.IsReadOnly*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.IsReadOnly
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_IsReadOnly
name: IsReadOnly
nameWithType: DynamicArray<T>.IsReadOnly
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.IsReadOnly
nameWithType.vb: DynamicArray(Of T).IsReadOnly
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).IsReadOnly
- uid: System.Collections.Generic.ICollection{{T}}.IsReadOnly
commentId: P:System.Collections.Generic.ICollection{`0}.IsReadOnly
parent: System.Collections.Generic.ICollection{{T}}
definition: System.Collections.Generic.ICollection`1.IsReadOnly
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.isreadonly
name: IsReadOnly
nameWithType: ICollection<T>.IsReadOnly
fullName: System.Collections.Generic.ICollection<T>.IsReadOnly
nameWithType.vb: ICollection(Of T).IsReadOnly
fullName.vb: System.Collections.Generic.ICollection(Of T).IsReadOnly
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
- uid: System.Collections.Generic.ICollection`1.IsReadOnly
commentId: P:System.Collections.Generic.ICollection`1.IsReadOnly
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.isreadonly
name: IsReadOnly
nameWithType: ICollection<T>.IsReadOnly
fullName: System.Collections.Generic.ICollection<T>.IsReadOnly
nameWithType.vb: ICollection(Of T).IsReadOnly
fullName.vb: System.Collections.Generic.ICollection(Of T).IsReadOnly
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Capacity*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.Capacity
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_Capacity
name: Capacity
nameWithType: DynamicArray<T>.Capacity
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Capacity
nameWithType.vb: DynamicArray(Of T).Capacity
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Capacity
- uid: Misaki.HighPerformance.Collections.DynamicArray`1
commentId: T:Misaki.HighPerformance.Collections.DynamicArray`1
href: Misaki.HighPerformance.Collections.DynamicArray-1.html
name: DynamicArray<T>
nameWithType: DynamicArray<T>
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>
nameWithType.vb: DynamicArray(Of T)
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T)
name.vb: DynamicArray(Of T)
spec.csharp:
- uid: Misaki.HighPerformance.Collections.DynamicArray`1
name: DynamicArray
href: Misaki.HighPerformance.Collections.DynamicArray-1.html
- name: <
- name: T
- name: '>'
spec.vb:
- uid: Misaki.HighPerformance.Collections.DynamicArray`1
name: DynamicArray
href: Misaki.HighPerformance.Collections.DynamicArray-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.#ctor*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.#ctor
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1__ctor_System_Int32_
name: DynamicArray
nameWithType: DynamicArray<T>.DynamicArray
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.DynamicArray
nameWithType.vb: DynamicArray(Of T).New
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).New
name.vb: New
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.GetEnumerator*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.GetEnumerator
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_GetEnumerator
name: GetEnumerator
nameWithType: DynamicArray<T>.GetEnumerator
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.GetEnumerator
nameWithType.vb: DynamicArray(Of T).GetEnumerator
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).GetEnumerator
- uid: System.Collections.Generic.IEnumerable{{T}}.GetEnumerator
commentId: M:System.Collections.Generic.IEnumerable{`0}.GetEnumerator
parent: System.Collections.Generic.IEnumerable{{T}}
definition: System.Collections.Generic.IEnumerable`1.GetEnumerator
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator
name: GetEnumerator()
nameWithType: IEnumerable<T>.GetEnumerator()
fullName: System.Collections.Generic.IEnumerable<T>.GetEnumerator()
nameWithType.vb: IEnumerable(Of T).GetEnumerator()
fullName.vb: System.Collections.Generic.IEnumerable(Of T).GetEnumerator()
spec.csharp:
- uid: System.Collections.Generic.IEnumerable{`0}.GetEnumerator
name: GetEnumerator
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator
- name: (
- name: )
spec.vb:
- uid: System.Collections.Generic.IEnumerable{`0}.GetEnumerator
name: GetEnumerator
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator
- name: (
- name: )
- uid: System.Collections.Generic.IEnumerator{{T}}
commentId: T:System.Collections.Generic.IEnumerator{`0}
parent: System.Collections.Generic
definition: System.Collections.Generic.IEnumerator`1
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1
name: IEnumerator<T>
nameWithType: IEnumerator<T>
fullName: System.Collections.Generic.IEnumerator<T>
nameWithType.vb: IEnumerator(Of T)
fullName.vb: System.Collections.Generic.IEnumerator(Of T)
name.vb: IEnumerator(Of T)
spec.csharp:
- uid: System.Collections.Generic.IEnumerator`1
name: IEnumerator
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerator`1
name: IEnumerator
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Collections.Generic.IEnumerable`1.GetEnumerator
commentId: M:System.Collections.Generic.IEnumerable`1.GetEnumerator
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator
name: GetEnumerator()
nameWithType: IEnumerable<T>.GetEnumerator()
fullName: System.Collections.Generic.IEnumerable<T>.GetEnumerator()
nameWithType.vb: IEnumerable(Of T).GetEnumerator()
fullName.vb: System.Collections.Generic.IEnumerable(Of T).GetEnumerator()
spec.csharp:
- uid: System.Collections.Generic.IEnumerable`1.GetEnumerator
name: GetEnumerator
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator
- name: (
- name: )
spec.vb:
- uid: System.Collections.Generic.IEnumerable`1.GetEnumerator
name: GetEnumerator
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerable-1.getenumerator
- name: (
- name: )
- uid: System.Collections.Generic.IEnumerator`1
commentId: T:System.Collections.Generic.IEnumerator`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1
name: IEnumerator<T>
nameWithType: IEnumerator<T>
fullName: System.Collections.Generic.IEnumerator<T>
nameWithType.vb: IEnumerator(Of T)
fullName.vb: System.Collections.Generic.IEnumerator(Of T)
name.vb: IEnumerator(Of T)
spec.csharp:
- uid: System.Collections.Generic.IEnumerator`1
name: IEnumerator
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Collections.Generic.IEnumerator`1
name: IEnumerator
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ienumerator-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Add*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.Add
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_Add__0_
name: Add
nameWithType: DynamicArray<T>.Add
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Add
nameWithType.vb: DynamicArray(Of T).Add
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Add
- uid: System.Collections.Generic.ICollection{{T}}.Add({T})
commentId: M:System.Collections.Generic.ICollection{`0}.Add(`0)
parent: System.Collections.Generic.ICollection{{T}}
definition: System.Collections.Generic.ICollection`1.Add(`0)
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.add
name: Add(T)
nameWithType: ICollection<T>.Add(T)
fullName: System.Collections.Generic.ICollection<T>.Add(T)
nameWithType.vb: ICollection(Of T).Add(T)
fullName.vb: System.Collections.Generic.ICollection(Of T).Add(T)
spec.csharp:
- uid: System.Collections.Generic.ICollection{`0}.Add(`0)
name: Add
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.add
- name: (
- name: T
- name: )
spec.vb:
- uid: System.Collections.Generic.ICollection{`0}.Add(`0)
name: Add
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.add
- name: (
- name: T
- name: )
- uid: System.Collections.Generic.ICollection`1.Add(`0)
commentId: M:System.Collections.Generic.ICollection`1.Add(`0)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.add
name: Add(T)
nameWithType: ICollection<T>.Add(T)
fullName: System.Collections.Generic.ICollection<T>.Add(T)
nameWithType.vb: ICollection(Of T).Add(T)
fullName.vb: System.Collections.Generic.ICollection(Of T).Add(T)
spec.csharp:
- uid: System.Collections.Generic.ICollection`1.Add(`0)
name: Add
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.add
- name: (
- name: T
- name: )
spec.vb:
- uid: System.Collections.Generic.ICollection`1.Add(`0)
name: Add
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.add
- name: (
- name: T
- name: )
- uid: System.ArgumentOutOfRangeException
commentId: T:System.ArgumentOutOfRangeException
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.argumentoutofrangeexception
name: ArgumentOutOfRangeException
nameWithType: ArgumentOutOfRangeException
fullName: System.ArgumentOutOfRangeException
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Insert*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.Insert
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_Insert_System_Int32__0_
name: Insert
nameWithType: DynamicArray<T>.Insert
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Insert
nameWithType.vb: DynamicArray(Of T).Insert
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Insert
- uid: System.Collections.Generic.IList{{T}}.Insert(System.Int32,{T})
commentId: M:System.Collections.Generic.IList{`0}.Insert(System.Int32,`0)
parent: System.Collections.Generic.IList{{T}}
definition: System.Collections.Generic.IList`1.Insert(System.Int32,`0)
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.insert
name: Insert(int, T)
nameWithType: IList<T>.Insert(int, T)
fullName: System.Collections.Generic.IList<T>.Insert(int, T)
nameWithType.vb: IList(Of T).Insert(Integer, T)
fullName.vb: System.Collections.Generic.IList(Of T).Insert(Integer, T)
name.vb: Insert(Integer, T)
spec.csharp:
- uid: System.Collections.Generic.IList{`0}.Insert(System.Int32,`0)
name: Insert
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.insert
- name: (
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- name: T
- name: )
spec.vb:
- uid: System.Collections.Generic.IList{`0}.Insert(System.Int32,`0)
name: Insert
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.insert
- name: (
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- name: T
- name: )
- uid: System.Collections.Generic.IList`1.Insert(System.Int32,`0)
commentId: M:System.Collections.Generic.IList`1.Insert(System.Int32,`0)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.insert
name: Insert(int, T)
nameWithType: IList<T>.Insert(int, T)
fullName: System.Collections.Generic.IList<T>.Insert(int, T)
nameWithType.vb: IList(Of T).Insert(Integer, T)
fullName.vb: System.Collections.Generic.IList(Of T).Insert(Integer, T)
name.vb: Insert(Integer, T)
spec.csharp:
- uid: System.Collections.Generic.IList`1.Insert(System.Int32,`0)
name: Insert
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.insert
- name: (
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- name: T
- name: )
spec.vb:
- uid: System.Collections.Generic.IList`1.Insert(System.Int32,`0)
name: Insert
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.insert
- name: (
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: ','
- name: " "
- name: T
- name: )
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Clear*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.Clear
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_Clear
name: Clear
nameWithType: DynamicArray<T>.Clear
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Clear
nameWithType.vb: DynamicArray(Of T).Clear
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Clear
- uid: System.Collections.Generic.ICollection{{T}}.Clear
commentId: M:System.Collections.Generic.ICollection{`0}.Clear
parent: System.Collections.Generic.ICollection{{T}}
definition: System.Collections.Generic.ICollection`1.Clear
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.clear
name: Clear()
nameWithType: ICollection<T>.Clear()
fullName: System.Collections.Generic.ICollection<T>.Clear()
nameWithType.vb: ICollection(Of T).Clear()
fullName.vb: System.Collections.Generic.ICollection(Of T).Clear()
spec.csharp:
- uid: System.Collections.Generic.ICollection{`0}.Clear
name: Clear
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.clear
- name: (
- name: )
spec.vb:
- uid: System.Collections.Generic.ICollection{`0}.Clear
name: Clear
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.clear
- name: (
- name: )
- uid: System.Collections.Generic.ICollection`1.Clear
commentId: M:System.Collections.Generic.ICollection`1.Clear
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.clear
name: Clear()
nameWithType: ICollection<T>.Clear()
fullName: System.Collections.Generic.ICollection<T>.Clear()
nameWithType.vb: ICollection(Of T).Clear()
fullName.vb: System.Collections.Generic.ICollection(Of T).Clear()
spec.csharp:
- uid: System.Collections.Generic.ICollection`1.Clear
name: Clear
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.clear
- name: (
- name: )
spec.vb:
- uid: System.Collections.Generic.ICollection`1.Clear
name: Clear
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.clear
- name: (
- name: )
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Contains*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.Contains
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_Contains__0_
name: Contains
nameWithType: DynamicArray<T>.Contains
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Contains
nameWithType.vb: DynamicArray(Of T).Contains
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Contains
- uid: System.Collections.Generic.ICollection{{T}}.Contains({T})
commentId: M:System.Collections.Generic.ICollection{`0}.Contains(`0)
parent: System.Collections.Generic.ICollection{{T}}
definition: System.Collections.Generic.ICollection`1.Contains(`0)
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.contains
name: Contains(T)
nameWithType: ICollection<T>.Contains(T)
fullName: System.Collections.Generic.ICollection<T>.Contains(T)
nameWithType.vb: ICollection(Of T).Contains(T)
fullName.vb: System.Collections.Generic.ICollection(Of T).Contains(T)
spec.csharp:
- uid: System.Collections.Generic.ICollection{`0}.Contains(`0)
name: Contains
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.contains
- name: (
- name: T
- name: )
spec.vb:
- uid: System.Collections.Generic.ICollection{`0}.Contains(`0)
name: Contains
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.contains
- name: (
- name: T
- name: )
- uid: System.Collections.Generic.ICollection`1.Contains(`0)
commentId: M:System.Collections.Generic.ICollection`1.Contains(`0)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.contains
name: Contains(T)
nameWithType: ICollection<T>.Contains(T)
fullName: System.Collections.Generic.ICollection<T>.Contains(T)
nameWithType.vb: ICollection(Of T).Contains(T)
fullName.vb: System.Collections.Generic.ICollection(Of T).Contains(T)
spec.csharp:
- uid: System.Collections.Generic.ICollection`1.Contains(`0)
name: Contains
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.contains
- name: (
- name: T
- name: )
spec.vb:
- uid: System.Collections.Generic.ICollection`1.Contains(`0)
name: Contains
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.contains
- name: (
- name: T
- name: )
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.IndexOf*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.IndexOf
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_IndexOf__0_
name: IndexOf
nameWithType: DynamicArray<T>.IndexOf
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.IndexOf
nameWithType.vb: DynamicArray(Of T).IndexOf
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).IndexOf
- uid: System.Collections.Generic.IList{{T}}.IndexOf({T})
commentId: M:System.Collections.Generic.IList{`0}.IndexOf(`0)
parent: System.Collections.Generic.IList{{T}}
definition: System.Collections.Generic.IList`1.IndexOf(`0)
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.indexof
name: IndexOf(T)
nameWithType: IList<T>.IndexOf(T)
fullName: System.Collections.Generic.IList<T>.IndexOf(T)
nameWithType.vb: IList(Of T).IndexOf(T)
fullName.vb: System.Collections.Generic.IList(Of T).IndexOf(T)
spec.csharp:
- uid: System.Collections.Generic.IList{`0}.IndexOf(`0)
name: IndexOf
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.indexof
- name: (
- name: T
- name: )
spec.vb:
- uid: System.Collections.Generic.IList{`0}.IndexOf(`0)
name: IndexOf
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.indexof
- name: (
- name: T
- name: )
- uid: System.Collections.Generic.IList`1.IndexOf(`0)
commentId: M:System.Collections.Generic.IList`1.IndexOf(`0)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.indexof
name: IndexOf(T)
nameWithType: IList<T>.IndexOf(T)
fullName: System.Collections.Generic.IList<T>.IndexOf(T)
nameWithType.vb: IList(Of T).IndexOf(T)
fullName.vb: System.Collections.Generic.IList(Of T).IndexOf(T)
spec.csharp:
- uid: System.Collections.Generic.IList`1.IndexOf(`0)
name: IndexOf
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.indexof
- name: (
- name: T
- name: )
spec.vb:
- uid: System.Collections.Generic.IList`1.IndexOf(`0)
name: IndexOf
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.indexof
- name: (
- name: T
- name: )
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.CopyTo*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.CopyTo
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_CopyTo__0___System_Int32_
name: CopyTo
nameWithType: DynamicArray<T>.CopyTo
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.CopyTo
nameWithType.vb: DynamicArray(Of T).CopyTo
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).CopyTo
- uid: System.Collections.Generic.ICollection{{T}}.CopyTo({T}[],System.Int32)
commentId: M:System.Collections.Generic.ICollection{`0}.CopyTo(`0[],System.Int32)
parent: System.Collections.Generic.ICollection{{T}}
definition: System.Collections.Generic.ICollection`1.CopyTo(`0[],System.Int32)
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.copyto
name: CopyTo(T[], int)
nameWithType: ICollection<T>.CopyTo(T[], int)
fullName: System.Collections.Generic.ICollection<T>.CopyTo(T[], int)
nameWithType.vb: ICollection(Of T).CopyTo(T(), Integer)
fullName.vb: System.Collections.Generic.ICollection(Of T).CopyTo(T(), Integer)
name.vb: CopyTo(T(), Integer)
spec.csharp:
- uid: System.Collections.Generic.ICollection{`0}.CopyTo(`0[],System.Int32)
name: CopyTo
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.copyto
- name: (
- name: T
- name: '['
- name: ']'
- name: ','
- name: " "
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: )
spec.vb:
- uid: System.Collections.Generic.ICollection{`0}.CopyTo(`0[],System.Int32)
name: CopyTo
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.copyto
- name: (
- name: T
- name: (
- name: )
- name: ','
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: )
- uid: '{T}[]'
isExternal: true
name: T[]
nameWithType: T[]
fullName: T[]
nameWithType.vb: T()
fullName.vb: T()
name.vb: T()
spec.csharp:
- name: T
- name: '['
- name: ']'
spec.vb:
- name: T
- name: (
- name: )
- uid: System.Collections.Generic.ICollection`1.CopyTo(`0[],System.Int32)
commentId: M:System.Collections.Generic.ICollection`1.CopyTo(`0[],System.Int32)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.copyto
name: CopyTo(T[], int)
nameWithType: ICollection<T>.CopyTo(T[], int)
fullName: System.Collections.Generic.ICollection<T>.CopyTo(T[], int)
nameWithType.vb: ICollection(Of T).CopyTo(T(), Integer)
fullName.vb: System.Collections.Generic.ICollection(Of T).CopyTo(T(), Integer)
name.vb: CopyTo(T(), Integer)
spec.csharp:
- uid: System.Collections.Generic.ICollection`1.CopyTo(`0[],System.Int32)
name: CopyTo
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.copyto
- name: (
- name: T
- name: '['
- name: ']'
- name: ','
- name: " "
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: )
spec.vb:
- uid: System.Collections.Generic.ICollection`1.CopyTo(`0[],System.Int32)
name: CopyTo
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.copyto
- name: (
- name: T
- name: (
- name: )
- name: ','
- name: " "
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: )
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.Remove*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.Remove
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_Remove__0_
name: Remove
nameWithType: DynamicArray<T>.Remove
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.Remove
nameWithType.vb: DynamicArray(Of T).Remove
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).Remove
- uid: System.Collections.Generic.ICollection{{T}}.Remove({T})
commentId: M:System.Collections.Generic.ICollection{`0}.Remove(`0)
parent: System.Collections.Generic.ICollection{{T}}
definition: System.Collections.Generic.ICollection`1.Remove(`0)
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.remove
name: Remove(T)
nameWithType: ICollection<T>.Remove(T)
fullName: System.Collections.Generic.ICollection<T>.Remove(T)
nameWithType.vb: ICollection(Of T).Remove(T)
fullName.vb: System.Collections.Generic.ICollection(Of T).Remove(T)
spec.csharp:
- uid: System.Collections.Generic.ICollection{`0}.Remove(`0)
name: Remove
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.remove
- name: (
- name: T
- name: )
spec.vb:
- uid: System.Collections.Generic.ICollection{`0}.Remove(`0)
name: Remove
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.remove
- name: (
- name: T
- name: )
- uid: System.Collections.Generic.ICollection`1.Remove(`0)
commentId: M:System.Collections.Generic.ICollection`1.Remove(`0)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.remove
name: Remove(T)
nameWithType: ICollection<T>.Remove(T)
fullName: System.Collections.Generic.ICollection<T>.Remove(T)
nameWithType.vb: ICollection(Of T).Remove(T)
fullName.vb: System.Collections.Generic.ICollection(Of T).Remove(T)
spec.csharp:
- uid: System.Collections.Generic.ICollection`1.Remove(`0)
name: Remove
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.remove
- name: (
- name: T
- name: )
spec.vb:
- uid: System.Collections.Generic.ICollection`1.Remove(`0)
name: Remove
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.icollection-1.remove
- name: (
- name: T
- name: )
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.RemoveAt*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.RemoveAt
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_RemoveAt_System_Int32_
name: RemoveAt
nameWithType: DynamicArray<T>.RemoveAt
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.RemoveAt
nameWithType.vb: DynamicArray(Of T).RemoveAt
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).RemoveAt
- uid: System.Collections.Generic.IList{{T}}.RemoveAt(System.Int32)
commentId: M:System.Collections.Generic.IList{`0}.RemoveAt(System.Int32)
parent: System.Collections.Generic.IList{{T}}
definition: System.Collections.Generic.IList`1.RemoveAt(System.Int32)
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.removeat
name: RemoveAt(int)
nameWithType: IList<T>.RemoveAt(int)
fullName: System.Collections.Generic.IList<T>.RemoveAt(int)
nameWithType.vb: IList(Of T).RemoveAt(Integer)
fullName.vb: System.Collections.Generic.IList(Of T).RemoveAt(Integer)
name.vb: RemoveAt(Integer)
spec.csharp:
- uid: System.Collections.Generic.IList{`0}.RemoveAt(System.Int32)
name: RemoveAt
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.removeat
- name: (
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: )
spec.vb:
- uid: System.Collections.Generic.IList{`0}.RemoveAt(System.Int32)
name: RemoveAt
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.removeat
- name: (
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: )
- uid: System.Collections.Generic.IList`1.RemoveAt(System.Int32)
commentId: M:System.Collections.Generic.IList`1.RemoveAt(System.Int32)
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.removeat
name: RemoveAt(int)
nameWithType: IList<T>.RemoveAt(int)
fullName: System.Collections.Generic.IList<T>.RemoveAt(int)
nameWithType.vb: IList(Of T).RemoveAt(Integer)
fullName.vb: System.Collections.Generic.IList(Of T).RemoveAt(Integer)
name.vb: RemoveAt(Integer)
spec.csharp:
- uid: System.Collections.Generic.IList`1.RemoveAt(System.Int32)
name: RemoveAt
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.removeat
- name: (
- uid: System.Int32
name: int
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: )
spec.vb:
- uid: System.Collections.Generic.IList`1.RemoveAt(System.Int32)
name: RemoveAt
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.ilist-1.removeat
- name: (
- uid: System.Int32
name: Integer
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
- name: )
- uid: Misaki.HighPerformance.Collections.DynamicArray`1.AsSpan*
commentId: Overload:Misaki.HighPerformance.Collections.DynamicArray`1.AsSpan
href: Misaki.HighPerformance.Collections.DynamicArray-1.html#Misaki_HighPerformance_Collections_DynamicArray_1_AsSpan
name: AsSpan
nameWithType: DynamicArray<T>.AsSpan
fullName: Misaki.HighPerformance.Collections.DynamicArray<T>.AsSpan
nameWithType.vb: DynamicArray(Of T).AsSpan
fullName.vb: Misaki.HighPerformance.Collections.DynamicArray(Of T).AsSpan
- uid: System.Span{{T}}
commentId: T:System.Span{`0}
parent: System
definition: System.Span`1
href: https://learn.microsoft.com/dotnet/api/system.span-1
name: Span<T>
nameWithType: Span<T>
fullName: System.Span<T>
nameWithType.vb: Span(Of T)
fullName.vb: System.Span(Of T)
name.vb: Span(Of T)
spec.csharp:
- uid: System.Span`1
name: Span
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.span-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Span`1
name: Span
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.span-1
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: System.Span`1
commentId: T:System.Span`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.span-1
name: Span<T>
nameWithType: Span<T>
fullName: System.Span<T>
nameWithType.vb: Span(Of T)
fullName.vb: System.Span(Of T)
name.vb: Span(Of T)
spec.csharp:
- uid: System.Span`1
name: Span
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.span-1
- name: <
- name: T
- name: '>'
spec.vb:
- uid: System.Span`1
name: Span
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.span-1
- name: (
- name: Of
- name: " "
- name: T
- name: )