예제 #1
0
        public BufferArrayBool(BufferArrayBool arr, int length)
        {
            this.arr = PoolArray <StorageType> .Spawn(length / BufferArrayBool.SIZE + 1);

            this.Length    = length;
            this.isCreated = true;
            System.Array.Copy(arr.arr.arr, this.arr.arr, arr.Length);
        }
예제 #2
0
 public Enumerator(BufferArrayBool bufferArray)
 {
     this.bufferArray = bufferArray;
     this.index       = -1;
 }
예제 #3
0
 public bool Equals(BufferArrayBool other)
 {
     return(this == other);
 }