signExtend method

  1. @nonVirtual
T signExtend(
  1. int startSize
)

Returns the current value BinaryInt.signExtend-ed to the full size.

All bits to the left (inclusive of startSize) are replaced as a result.

Implementation

@nonVirtual
T signExtend(int startSize) {
  return wrapSafeValue(value.signExtend(startSize, size));
}