Struct FixedListByte512 | Collections | 0.7.1-preview.3
docs.unity3d.com
    Show / Hide Table of Contents

    Struct FixedListByte512

    An unmanaged, resizable list of byte that does not allocate memory. It is 512 bytes in size, and contains all the memory it needs.

    Namespace: Unity.Collections
    Syntax
    public struct FixedListByte512 : IEnumerable<byte>, IEnumerable, IEquatable<FixedListByte32>, IComparable<FixedListByte32>, IEquatable<FixedListByte64>, IComparable<FixedListByte64>, IEquatable<FixedListByte128>, IComparable<FixedListByte128>, IEquatable<FixedListByte512>, IComparable<FixedListByte512>, IEquatable<FixedListByte4096>, IComparable<FixedListByte4096>

    Constructors

    FixedListByte512(FixedListByte128)

    Constructs a new FixedListByte512 that is a copy of a FixedListByte128.

    Declaration
    public FixedListByte512(in FixedListByte128 other)
    Parameters
    Type Name Description
    FixedListByte128 other

    The FixedListByte128 to copy

    FixedListByte512(FixedListByte32)

    Constructs a new FixedListByte512 that is a copy of a FixedListByte32.

    Declaration
    public FixedListByte512(in FixedListByte32 other)
    Parameters
    Type Name Description
    FixedListByte32 other

    The FixedListByte32 to copy

    FixedListByte512(FixedListByte4096)

    Constructs a new FixedListByte512 that is a copy of a FixedListByte4096.

    Declaration
    public FixedListByte512(in FixedListByte4096 other)
    Parameters
    Type Name Description
    FixedListByte4096 other

    The FixedListByte4096 to copy

    FixedListByte512(FixedListByte64)

    Constructs a new FixedListByte512 that is a copy of a FixedListByte64.

    Declaration
    public FixedListByte512(in FixedListByte64 other)
    Parameters
    Type Name Description
    FixedListByte64 other

    The FixedListByte64 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 byte this[int index] { get; set; }
    Parameters
    Type Name Description
    Int32 index

    The zero-based index into the list.

    Property Value
    Type Description
    Byte

    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(Byte)

    Adds an element to the list.

    Declaration
    public void Add(byte item)
    Parameters
    Type Name Description
    Byte item

    The byte to be added at the end of the list.

    Exceptions
    Type Condition
    IndexOutOfRangeException

    Thrown if list is already full. See Capacity.

    AddNoResize(Byte)

    Adds an element to the list.

    Declaration
    public void AddNoResize(byte item)
    Parameters
    Type Name Description
    Byte item

    The byte to be added at the end of the list.

    Exceptions
    Type Condition
    IndexOutOfRangeException

    Thrown if list is already full. See Capacity.

    Clear()

    Clears the list.

    Declaration
    public void Clear()

    CompareTo(FixedListByte128)

    Compares this instance with a specified FixedListByte128 and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified FixedListByte128.

    Declaration
    public int CompareTo(FixedListByte128 other)
    Parameters
    Type Name Description
    FixedListByte128 other

    The specified FixedListByte128 to compare with

    Returns
    Type Description
    Int32

    CompareTo(FixedListByte32)

    Compares this instance with a specified FixedListByte32 and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified FixedListByte32.

    Declaration
    public int CompareTo(FixedListByte32 other)
    Parameters
    Type Name Description
    FixedListByte32 other

    The specified FixedListByte32 to compare with

    Returns
    Type Description
    Int32

    CompareTo(FixedListByte4096)

    Compares this instance with a specified FixedListByte4096 and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified FixedListByte4096.

    Declaration
    public int CompareTo(FixedListByte4096 other)
    Parameters
    Type Name Description
    FixedListByte4096 other

    The specified FixedListByte4096 to compare with

    Returns
    Type Description
    Int32

    CompareTo(FixedListByte512)

    Compares this instance with a specified FixedListByte512 and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified FixedListByte512.

    Declaration
    public int CompareTo(FixedListByte512 other)
    Parameters
    Type Name Description
    FixedListByte512 other

    The specified FixedListByte512 to compare with

    Returns
    Type Description
    Int32

    CompareTo(FixedListByte64)

    Compares this instance with a specified FixedListByte64 and indicates whether this instance precedes, follows, or appears in the same position in the sort order as the specified FixedListByte64.

    Declaration
    public int CompareTo(FixedListByte64 other)
    Parameters
    Type Name Description
    FixedListByte64 other

    The specified FixedListByte64 to compare with

    Returns
    Type Description
    Int32

    Contains(Byte)

    Determines whether an element is in the FixedListByte512.

    Declaration
    public bool Contains(byte item)
    Parameters
    Type Name Description
    Byte item

    The object to locate in the FixedListByte512.

    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
    ValueType.Equals(Object)

    Equals(FixedListByte128)

    Compares this instance with a specified FixedListByte128 and indicates whether this instance is equal to the specified FixedListByte128.

    Declaration
    public bool Equals(FixedListByte128 other)
    Parameters
    Type Name Description
    FixedListByte128 other

    The specified FixedListByte128 to compare with for equality

    Returns
    Type Description
    Boolean

    Equals(FixedListByte32)

    Compares this instance with a specified FixedListByte32 and indicates whether this instance is equal to the specified FixedListByte32.

    Declaration
    public bool Equals(FixedListByte32 other)
    Parameters
    Type Name Description
    FixedListByte32 other

    The specified FixedListByte32 to compare with for equality

    Returns
    Type Description
    Boolean

    Equals(FixedListByte4096)

    Compares this instance with a specified FixedListByte4096 and indicates whether this instance is equal to the specified FixedListByte4096.

    Declaration
    public bool Equals(FixedListByte4096 other)
    Parameters
    Type Name Description
    FixedListByte4096 other

    The specified FixedListByte4096 to compare with for equality

    Returns
    Type Description
    Boolean

    Equals(FixedListByte512)

    Compares this instance with a specified FixedListByte512 and indicates whether this instance is equal to the specified FixedListByte512.

    Declaration
    public bool Equals(FixedListByte512 other)
    Parameters
    Type Name Description
    FixedListByte512 other

    The specified FixedListByte512 to compare with for equality

    Returns
    Type Description
    Boolean

    Equals(FixedListByte64)

    Compares this instance with a specified FixedListByte64 and indicates whether this instance is equal to the specified FixedListByte64.

    Declaration
    public bool Equals(FixedListByte64 other)
    Parameters
    Type Name Description
    FixedListByte64 other

    The specified FixedListByte64 to compare with for equality

    Returns
    Type Description
    Boolean

    GetEnumerator()

    Returns an enumerator that iterates through a container.

    Declaration
    public FixedListByte512.Enumerator GetEnumerator()
    Returns
    Type Description
    FixedListByte512.Enumerator

    An IEnumerator object that can be used to iterate through the container.

    GetHashCode()

    Computes a hash code summary of the FixedListByte512.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    Int32
    Overrides
    ValueType.GetHashCode()

    IndexOf(Byte)

    Searches for the specified byte and returns the zero-based index of the first occurrence within the entire FixedListByte512.

    Declaration
    public int IndexOf(byte item)
    Parameters
    Type Name Description
    Byte item

    The byte to locate in the FixedListByte512.

    Returns
    Type Description
    Int32

    IndexOf(Byte, Int32)

    Searches for the specified byte and returns the zero-based index of the first occurrence within the range of elements in the FixedListByte512 that starts at the specified index.

    Declaration
    public int IndexOf(byte item, int index)
    Parameters
    Type Name Description
    Byte item

    The byte to locate in the FixedListByte512.

    Int32 index

    The zero-based starting index of the search. 0 (zero) is valid in an empty list.

    Returns
    Type Description
    Int32

    IndexOf(Byte, Int32, Int32)

    Searches for the specified byte and returns the zero-based index of the first occurrence within the range of elements in the FixedListByte512 that starts at the specified index and contains the specified number of elements.

    Declaration
    public int IndexOf(byte item, int index, int count)
    Parameters
    Type Name Description
    Byte item

    The byte to locate in the FixedListByte512.

    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, Byte)

    Inserts a single element into a FixedListByte512 at a specified zero-based index.

    Declaration
    public void Insert(int index, byte item)
    Parameters
    Type Name Description
    Int32 index

    The zero-based index at which the new element should be inserted.

    Byte item

    The element to insert

    InsertRange(Int32, Int32)

    Inserts a number of items into a FixedListByte512 at a specified zero-based index.

    Declaration
    public void InsertRange(int begin, int end)
    Parameters
    Type Name Description
    Int32 begin

    The zero-based index at which the new elements should be inserted.

    Int32 end

    The zero-based index just after where the elements should be removed.

    Remove(Byte)

    Searches for the specified byte from the begining of the FixedListByte512 forward, removes it if possible, and returns true if the byte was successfully removed.

    Declaration
    public bool Remove(byte item)
    Parameters
    Type Name Description
    Byte item

    The byte to locate in the FixedListByte512

    Returns
    Type Description
    Boolean

    RemoveAt(Int32)

    Removes the byte 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 byte

    RemoveAtSwapBack(Int32)

    Removes an element from the FixedListByte512 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 FixedListByte512 at a specified zero-based index.

    Declaration
    public void RemoveRange(int begin, int end)
    Parameters
    Type Name Description
    Int32 begin

    The zero-based index at which the elements should be removed.

    Int32 end

    RemoveSwapBack(Byte)

    Removes the first occurrence of an item from the FixedListByte512 and replaces it with the last element, which can be much faster than copying down all subsequent elements.

    Declaration
    public void RemoveSwapBack(byte item)
    Parameters
    Type Name Description
    Byte item

    The elements to remove from the FixedListByte512.

    Sort()

    Sorts the elements in this FixedListByte512.

    Declaration
    public void Sort()

    ToArray()

    Creates a managed Array of byte that is a copy of this FixedListByte512.

    Declaration
    public byte[] ToArray()
    Returns
    Type Description
    Byte[]

    ToNativeArray(Allocator)

    Creates an unmanaged NativeArraybyte that is a copy of this FixedListByte512.

    Declaration
    public NativeArray<byte> ToNativeArray(Allocator allocator)
    Parameters
    Type Name Description
    Allocator allocator

    A member of the Unity.Collections.Allocator enumeration.

    Returns
    Type Description
    NativeArray<Byte>

    Operators

    Equality(FixedListByte512, FixedListByte128)

    Determines whether a FixedListByte512 and FixedListByte128 have the same value.

    Declaration
    public static bool operator ==(in FixedListByte512 a, in FixedListByte128 b)
    Parameters
    Type Name Description
    FixedListByte512 a

    The FixedListByte512 to compare for equality

    FixedListByte128 b

    The FixedListByte128 to compare for equality

    Returns
    Type Description
    Boolean

    Equality(FixedListByte512, FixedListByte32)

    Determines whether a FixedListByte512 and FixedListByte32 have the same value.

    Declaration
    public static bool operator ==(in FixedListByte512 a, in FixedListByte32 b)
    Parameters
    Type Name Description
    FixedListByte512 a

    The FixedListByte512 to compare for equality

    FixedListByte32 b

    The FixedListByte32 to compare for equality

    Returns
    Type Description
    Boolean

    Equality(FixedListByte512, FixedListByte4096)

    Determines whether a FixedListByte512 and FixedListByte4096 have the same value.

    Declaration
    public static bool operator ==(in FixedListByte512 a, in FixedListByte4096 b)
    Parameters
    Type Name Description
    FixedListByte512 a

    The FixedListByte512 to compare for equality

    FixedListByte4096 b

    The FixedListByte4096 to compare for equality

    Returns
    Type Description
    Boolean

    Equality(FixedListByte512, FixedListByte512)

    Determines whether a FixedListByte512 and FixedListByte512 have the same value.

    Declaration
    public static bool operator ==(in FixedListByte512 a, in FixedListByte512 b)
    Parameters
    Type Name Description
    FixedListByte512 a

    The FixedListByte512 to compare for equality

    FixedListByte512 b

    The FixedListByte512 to compare for equality

    Returns
    Type Description
    Boolean

    Equality(FixedListByte512, FixedListByte64)

    Determines whether a FixedListByte512 and FixedListByte64 have the same value.

    Declaration
    public static bool operator ==(in FixedListByte512 a, in FixedListByte64 b)
    Parameters
    Type Name Description
    FixedListByte512 a

    The FixedListByte512 to compare for equality

    FixedListByte64 b

    The FixedListByte64 to compare for equality

    Returns
    Type Description
    Boolean

    Implicit(FixedListByte128 to FixedListByte512)

    Implicitly converts a FixedListByte128 to a FixedListByte512.

    Declaration
    public static implicit operator FixedListByte512(in FixedListByte128 other)
    Parameters
    Type Name Description
    FixedListByte128 other

    The FixedListByte128 to copy

    Returns
    Type Description
    FixedListByte512

    Implicit(FixedListByte32 to FixedListByte512)

    Implicitly converts a FixedListByte32 to a FixedListByte512.

    Declaration
    public static implicit operator FixedListByte512(in FixedListByte32 other)
    Parameters
    Type Name Description
    FixedListByte32 other

    The FixedListByte32 to copy

    Returns
    Type Description
    FixedListByte512

    Implicit(FixedListByte4096 to FixedListByte512)

    Implicitly converts a FixedListByte4096 to a FixedListByte512.

    Declaration
    public static implicit operator FixedListByte512(in FixedListByte4096 other)
    Parameters
    Type Name Description
    FixedListByte4096 other

    The FixedListByte4096 to copy

    Returns
    Type Description
    FixedListByte512

    Implicit(FixedListByte64 to FixedListByte512)

    Implicitly converts a FixedListByte64 to a FixedListByte512.

    Declaration
    public static implicit operator FixedListByte512(in FixedListByte64 other)
    Parameters
    Type Name Description
    FixedListByte64 other

    The FixedListByte64 to copy

    Returns
    Type Description
    FixedListByte512

    Inequality(FixedListByte512, FixedListByte128)

    Determines whether a FixedListByte512 and FixedListByte128 have different values.

    Declaration
    public static bool operator !=(in FixedListByte512 a, in FixedListByte128 b)
    Parameters
    Type Name Description
    FixedListByte512 a

    The FixedListByte512 to compare for inequality

    FixedListByte128 b

    The FixedListByte128 to compare for inequality

    Returns
    Type Description
    Boolean

    Inequality(FixedListByte512, FixedListByte32)

    Determines whether a FixedListByte512 and FixedListByte32 have different values.

    Declaration
    public static bool operator !=(in FixedListByte512 a, in FixedListByte32 b)
    Parameters
    Type Name Description
    FixedListByte512 a

    The FixedListByte512 to compare for inequality

    FixedListByte32 b

    The FixedListByte32 to compare for inequality

    Returns
    Type Description
    Boolean

    Inequality(FixedListByte512, FixedListByte4096)

    Determines whether a FixedListByte512 and FixedListByte4096 have different values.

    Declaration
    public static bool operator !=(in FixedListByte512 a, in FixedListByte4096 b)
    Parameters
    Type Name Description
    FixedListByte512 a

    The FixedListByte512 to compare for inequality

    FixedListByte4096 b

    The FixedListByte4096 to compare for inequality

    Returns
    Type Description
    Boolean

    Inequality(FixedListByte512, FixedListByte512)

    Determines whether a FixedListByte512 and FixedListByte512 have different values.

    Declaration
    public static bool operator !=(in FixedListByte512 a, in FixedListByte512 b)
    Parameters
    Type Name Description
    FixedListByte512 a

    The FixedListByte512 to compare for inequality

    FixedListByte512 b

    The FixedListByte512 to compare for inequality

    Returns
    Type Description
    Boolean

    Inequality(FixedListByte512, FixedListByte64)

    Determines whether a FixedListByte512 and FixedListByte64 have different values.

    Declaration
    public static bool operator !=(in FixedListByte512 a, in FixedListByte64 b)
    Parameters
    Type Name Description
    FixedListByte512 a

    The FixedListByte512 to compare for inequality

    FixedListByte64 b

    The FixedListByte64 to compare for inequality

    Returns
    Type Description
    Boolean

    Extension Methods

    JobNativeMultiHashMapVisitKeyValue.Schedule<TJob, TKey, TValue>(TJob, NativeMultiHashMap<TKey, TValue>, Int32, JobHandle)
    JobNativeMultiHashMapVisitKeyMutableValue.Schedule<TJob, TKey, TValue>(TJob, NativeMultiHashMap<TKey, TValue>, Int32, JobHandle)
    JobUnsafeMultiHashMapVisitKeyValue.Schedule<TJob, TKey, TValue>(TJob, UnsafeMultiHashMap<TKey, TValue>, Int32, JobHandle)
    JobUnsafeMultiHashMapVisitKeyMutableValue.Schedule<TJob, TKey, TValue>(TJob, UnsafeMultiHashMap<TKey, TValue>, Int32, JobHandle)
    Back to top
    Copyright © 2023 Unity Technologies — Terms of use
    • Legal
    • Privacy Policy
    • Cookies
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)
    "Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
    Generated by DocFX on 18 October 2023