Struct BitArray128
Bit array of size 128.
Implements
Inherited Members
Namespace: UnityEngine.Rendering
Assembly: Unity.RenderPipelines.Core.Runtime.dll
Syntax
[Serializable]
public struct BitArray128 : IBitArray
Constructors
Name | Description |
---|---|
BitArray128(IEnumerable<uint>) | Constructor. |
BitArray128(ulong, 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 &(BitArray128, BitArray128) | Bit-wise And operator |
operator |(BitArray128, BitArray128) | Bit-wise Or operator |
operator ==(BitArray128, BitArray128) | Equality operator. |
operator !=(BitArray128, BitArray128) | Inequality operator. |
operator ~(BitArray128) | Bit-wise Not operator |