SharedPointerBytes<T> constructor

SharedPointerBytes<T>(
  1. int allocatedBytesLength,
  2. int bytesPerValue,
  3. bool initializeZeroed
)

Implementation

SharedPointerBytes(
    this.allocatedBytesLength, this.bytesPerValue, this.initializeZeroed)
    : length = allocatedBytesLength ~/ bytesPerValue;