} // Read public static uint Read(this NativeReader reader, uint offset, out ConstantBooleanArrayHandle handle) { uint value; offset = reader.DecodeUnsigned(offset, out value); handle = new ConstantBooleanArrayHandle((int)value); handle._Validate(); return offset; } // Read
} // Read public static uint Read(this NativeReader reader, uint offset, out ConstantBooleanArrayHandle[] values) { uint count; offset = reader.DecodeUnsigned(offset, out count); if (count == 0) { values = s_emptyConstantBooleanArrayHandleArray; } else { values = new ConstantBooleanArrayHandle[count]; for (uint i = 0; i < count; ++i) { ConstantBooleanArrayHandle tmp; offset = reader.Read(offset, out tmp); values[i] = tmp; } } return offset; } // Read
} // IsNull internal bool IsNull(ConstantBooleanArrayHandle handle) { return (handle._value & 0x00FFFFFF) == 0; } // IsNull
} // ToHandle internal Handle ToHandle(ConstantBooleanArrayHandle handle) { return new Handle(handle._value); } // ToHandle
} // GetByReferenceSignature public ConstantBooleanArray GetConstantBooleanArray(ConstantBooleanArrayHandle handle) { var record = new ConstantBooleanArray() { _reader = this, _handle = handle }; var offset = (uint)handle.Offset; offset = _streamReader.Read(offset, out record._value); return record; } // GetConstantBooleanArray
} // Equals public bool Equals(ConstantBooleanArrayHandle handle) { return _value == handle._value; } // Equals
} // Read public static uint Read(this NativeReader reader, uint offset, out ConstantBooleanArrayHandle[] values) { uint count; offset = reader.DecodeUnsigned(offset, out count); #if !NETFX_45 if (count == 0) { values = Array.Empty<ConstantBooleanArrayHandle>(); } else #endif { values = new ConstantBooleanArrayHandle[count]; for (uint i = 0; i < count; ++i) { ConstantBooleanArrayHandle tmp; offset = reader.Read(offset, out tmp); values[i] = tmp; } } return offset; } // Read