Struct FixedListInt64
An unmanaged, resizable list of int that does not allocate memory. It is 64 bytes in size, and contains all the memory it needs.
Namespace: Unity.Collections
Syntax
public struct FixedListInt64 : IEnumerable<int>, IEnumerable, IEquatable<FixedListInt32>, IComparable<FixedListInt32>, IEquatable<FixedListInt64>, IComparable<FixedListInt64>, IEquatable<FixedListInt128>, IComparable<FixedListInt128>
Constructors
FixedListInt64(FixedListInt128)
Constructs a new FixedListInt64 that is a copy of a FixedListInt128.
Declaration
public FixedListInt64(in FixedListInt128 other)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt128 | other | The FixedListInt128 to copy |
FixedListInt64(FixedListInt32)
Constructs a new FixedListInt64 that is a copy of a FixedListInt32.
Declaration
public FixedListInt64(in FixedListInt32 other)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt32 | other | The FixedListInt32 to copy |
Properties
Capacity
The number of items that can fit in the list.
Declaration
public int Capacity { get; }
Property Value
Type | Description |
---|---|
Int32 | The number of items that the list can hold. |
Remarks
Capacity specifies the number of items the list can currently hold. You can not change Capacity to fit more or fewer items.
Item[Int32]
Retrieve a member of the list by index.
Declaration
public int this[int index] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The zero-based index into the list. |
Property Value
Type | Description |
---|---|
Int32 | The list item at the specified index. |
Exceptions
Type | Condition |
---|---|
IndexOutOfRangeException | Thrown if index is negative or >= to Length. |
Length
The current number of items in the list.
Declaration
public int Length { get; set; }
Property Value
Type | Description |
---|---|
Int32 | The item length. |
Methods
Add(Int32)
Adds an element to the list.
Declaration
public void Add(int item)
Parameters
Type | Name | Description |
---|---|---|
Int32 | item |
Exceptions
Type | Condition |
---|---|
IndexOutOfRangeException | Thrown if list is already full. See Capacity. |
AddNoResize(Int32)
Adds an element to the list.
Declaration
public void AddNoResize(int item)
Parameters
Type | Name | Description |
---|---|---|
Int32 | item |
Exceptions
Type | Condition |
---|---|
IndexOutOfRangeException | Thrown if list is already full. See Capacity. |
Clear()
Clears the list.
Declaration
public void Clear()
CompareTo(FixedListInt128)
Compares this instance with a specified FixedListInt128 and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified FixedListInt128.
Declaration
public int CompareTo(FixedListInt128 other)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt128 | other | The specified FixedListInt128 to compare with |
Returns
Type | Description |
---|---|
Int32 |
CompareTo(FixedListInt32)
Compares this instance with a specified FixedListInt32 and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified FixedListInt32.
Declaration
public int CompareTo(FixedListInt32 other)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt32 | other | The specified FixedListInt32 to compare with |
Returns
Type | Description |
---|---|
Int32 |
CompareTo(FixedListInt64)
Compares this instance with a specified FixedListInt64 and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified FixedListInt64.
Declaration
public int CompareTo(FixedListInt64 other)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt64 | other | The specified FixedListInt64 to compare with |
Returns
Type | Description |
---|---|
Int32 |
Contains(Int32)
Determines whether an element is in the FixedListInt64.
Declaration
public bool Contains(int item)
Parameters
Type | Name | Description |
---|---|---|
Int32 | item | The object to locate in the FixedListInt64. |
Returns
Type | Description |
---|---|
Boolean |
Equals(Object)
Compares this instance with a specified object and indicates whether this instance is equal to the specified object.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
Object | obj | The specified object to compare with for equality |
Returns
Type | Description |
---|---|
Boolean |
Overrides
Equals(FixedListInt128)
Compares this instance with a specified FixedListInt128 and indicates whether this instance is equal to the specified FixedListInt128.
Declaration
public bool Equals(FixedListInt128 other)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt128 | other | The specified FixedListInt128 to compare with for equality |
Returns
Type | Description |
---|---|
Boolean |
Equals(FixedListInt32)
Compares this instance with a specified FixedListInt32 and indicates whether this instance is equal to the specified FixedListInt32.
Declaration
public bool Equals(FixedListInt32 other)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt32 | other | The specified FixedListInt32 to compare with for equality |
Returns
Type | Description |
---|---|
Boolean |
Equals(FixedListInt64)
Compares this instance with a specified FixedListInt64 and indicates whether this instance is equal to the specified FixedListInt64.
Declaration
public bool Equals(FixedListInt64 other)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt64 | other | The specified FixedListInt64 to compare with for equality |
Returns
Type | Description |
---|---|
Boolean |
GetEnumerator()
Declaration
public FixedListInt64.Enumerator GetEnumerator()
Returns
Type | Description |
---|---|
FixedListInt64.Enumerator |
GetHashCode()
Computes a hash code summary of the FixedListInt64.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
Int32 |
Overrides
IndexOf(Int32)
Searches for the specified int and returns the zero-based index of the first occurrence within the entire FixedListInt64.
Declaration
public int IndexOf(int item)
Parameters
Type | Name | Description |
---|---|---|
Int32 | item | The int to locate in the FixedListInt64. |
Returns
Type | Description |
---|---|
Int32 |
IndexOf(Int32, Int32)
Searches for the specified int and returns the zero-based index of the first occurrence within the range of elements in the FixedListInt64 that starts at the specified index.
Declaration
public int IndexOf(int item, int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | item | The int to locate in the FixedListInt64. |
Int32 | index | The zero-based starting index of the search. 0 (zero) is valid in an empty list. |
Returns
Type | Description |
---|---|
Int32 |
IndexOf(Int32, Int32, Int32)
Searches for the specified int and returns the zero-based index of the first occurrence within the range of elements in the FixedListInt64 that starts at the specified index and contains the specified number of elements.
Declaration
public int IndexOf(int item, int index, int count)
Parameters
Type | Name | Description |
---|---|---|
Int32 | item | The int to locate in the FixedListInt64. |
Int32 | index | The zero-based starting index of the search. 0 (zero) is valid in an empty list. |
Int32 | count | The number of elements in the section to search. |
Returns
Type | Description |
---|---|
Int32 |
Insert(Int32, Int32)
Inserts a single element into a FixedListInt64 at a specified zero-based index.
Declaration
public void Insert(int index, int item)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The zero-based index at which the new element should be inserted. |
Int32 | item | The element to insert |
InsertRange(Int32, Int32)
Inserts a number of items into a FixedListInt64 at a specified zero-based index.
Declaration
public void InsertRange(int begin, int items)
Parameters
Type | Name | Description |
---|---|---|
Int32 | begin | The zero-based index at which the new elements should be inserted. |
Int32 | items | The number of items to insert |
Remove(Int32)
Searches for the specified int from the begining of the FixedListInt64 forward, removes it if possible, and returns true if the int was successfully removed.
Declaration
public bool Remove(int item)
Parameters
Type | Name | Description |
---|---|---|
Int32 | item | The int to locate in the FixedListInt64 |
Returns
Type | Description |
---|---|
Boolean |
RemoveAt(Int32)
Removes the int at the specified index, and copies all subsequent elements backward to fill the hole so created.
Declaration
public void RemoveAt(int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The zero-based index at which to remove the int |
RemoveAtSwapBack(Int32)
Removes an element from the FixedListInt64 at the specified index and replaces it with the last element, which can be much faster than copying down all subsequent elements.
Declaration
public void RemoveAtSwapBack(int index)
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The zero-based index of the elements to remove. |
RemoveRange(Int32, Int32)
Removes a number of elements from a FixedListInt64 at a specified zero-based index.
Declaration
public void RemoveRange(int begin, int items)
Parameters
Type | Name | Description |
---|---|---|
Int32 | begin | The zero-based index at which the elements should be removed. |
Int32 | items | The number of elements to remove |
RemoveSwapBack(Int32)
Removes the first occurrence of an item from the FixedListInt64 and replaces it with the last element, which can be much faster than copying down all subsequent elements.
Declaration
public void RemoveSwapBack(int item)
Parameters
Type | Name | Description |
---|---|---|
Int32 | item | The elements to remove from the FixedListInt64. |
Sort()
Sorts the elements in this FixedListInt64.
Declaration
public void Sort()
ToArray()
Creates a managed Array of int that is a copy of this FixedListInt64.
Declaration
public int[] ToArray()
Returns
Type | Description |
---|---|
Int32[] |
ToNativeArray(Allocator)
Creates an unmanaged NativeArrayint that is a copy of this FixedListInt64.
Declaration
public NativeArray<int> ToNativeArray(Allocator allocator)
Parameters
Type | Name | Description |
---|---|---|
Allocator | allocator |
Returns
Type | Description |
---|---|
NativeArray<Int32> |
Operators
Equality(FixedListInt64, FixedListInt128)
Determines whether a FixedListInt64 and FixedListInt128 have the same value.
Declaration
public static bool operator ==(in FixedListInt64 a, in FixedListInt128 b)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt64 | a | The FixedListInt64 to compare for equality |
FixedListInt128 | b | The FixedListInt128 to compare for equality |
Returns
Type | Description |
---|---|
Boolean |
Equality(FixedListInt64, FixedListInt32)
Determines whether a FixedListInt64 and FixedListInt32 have the same value.
Declaration
public static bool operator ==(in FixedListInt64 a, in FixedListInt32 b)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt64 | a | The FixedListInt64 to compare for equality |
FixedListInt32 | b | The FixedListInt32 to compare for equality |
Returns
Type | Description |
---|---|
Boolean |
Equality(FixedListInt64, FixedListInt64)
Determines whether a FixedListInt64 and FixedListInt64 have the same value.
Declaration
public static bool operator ==(in FixedListInt64 a, in FixedListInt64 b)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt64 | a | The FixedListInt64 to compare for equality |
FixedListInt64 | b | The FixedListInt64 to compare for equality |
Returns
Type | Description |
---|---|
Boolean |
Implicit(FixedListInt128 to FixedListInt64)
Implicitly converts a FixedListInt128 to a FixedListInt64.
Declaration
public static implicit operator FixedListInt64(in FixedListInt128 other)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt128 | other | The FixedListInt128 to copy |
Returns
Type | Description |
---|---|
FixedListInt64 |
Implicit(FixedListInt32 to FixedListInt64)
Implicitly converts a FixedListInt32 to a FixedListInt64.
Declaration
public static implicit operator FixedListInt64(in FixedListInt32 other)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt32 | other | The FixedListInt32 to copy |
Returns
Type | Description |
---|---|
FixedListInt64 |
Inequality(FixedListInt64, FixedListInt128)
Determines whether a FixedListInt64 and FixedListInt128 have different values.
Declaration
public static bool operator !=(in FixedListInt64 a, in FixedListInt128 b)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt64 | a | The FixedListInt64 to compare for inequality |
FixedListInt128 | b | The FixedListInt128 to compare for inequality |
Returns
Type | Description |
---|---|
Boolean |
Inequality(FixedListInt64, FixedListInt32)
Determines whether a FixedListInt64 and FixedListInt32 have different values.
Declaration
public static bool operator !=(in FixedListInt64 a, in FixedListInt32 b)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt64 | a | The FixedListInt64 to compare for inequality |
FixedListInt32 | b | The FixedListInt32 to compare for inequality |
Returns
Type | Description |
---|---|
Boolean |
Inequality(FixedListInt64, FixedListInt64)
Determines whether a FixedListInt64 and FixedListInt64 have different values.
Declaration
public static bool operator !=(in FixedListInt64 a, in FixedListInt64 b)
Parameters
Type | Name | Description |
---|---|---|
FixedListInt64 | a | The FixedListInt64 to compare for inequality |
FixedListInt64 | b | The FixedListInt64 to compare for inequality |
Returns
Type | Description |
---|---|
Boolean |