Struct BitArray64
Bit array of size 64.
Implements
Inherited Members
Namespace: UnityEngine.Rendering
Assembly: Unity.RenderPipelines.Core.Runtime.dll
Syntax
[Serializable]
public struct BitArray64 : IBitArray
Constructors
Name | Description |
---|---|
BitArray64(IEnumerable<uint>) | Constructor. |
BitArray64(ulong) | Constructor. |
Properties
Name | Description |
---|---|
this[uint] | Returns the state of the bit at a specific index. |
allFalse | True if all bits are 0. |
allTrue | True if all bits are 1. |
capacity | Number of elements in the bit array. |
humanizedData | Returns the bit array in a human readable form. |
Methods
Name | Description |
---|---|
BitAnd(IBitArray) | Bit-wise And |
BitNot() | Bit-wise Not |
BitOr(IBitArray) | Bit-wise Or |
Equals(object) | Equality operator. |
GetHashCode() | Get the hashcode of the bit array. |
Operators
Name | Description |
---|---|
operator &(BitArray64, BitArray64) | Bit-wise And operator |
operator |(BitArray64, BitArray64) | Bit-wise Or operator |
operator ==(BitArray64, BitArray64) | Equality operator. |
operator !=(BitArray64, BitArray64) | Inequality operator. |
operator ~(BitArray64) | Bit-wise Not operator |