public LongPtr Subtract(LongPtr other) => new LongPtr(_value - other._value);
public LongPtr Add(LongPtr other) => new LongPtr(_value + other._value);