I have something like the following: > let value:int32 = r0[col0].int32 + r0[col1].int32 * 2 + ...
where r0 has type ptr UncheckedArray[uint8]. How can I avoid adding .int32 each time I use one item from the unckeckedarray?
I have something like the following: > let value:int32 = r0[col0].int32 + r0[col1].int32 * 2 + ...
where r0 has type ptr UncheckedArray[uint8]. How can I avoid adding .int32 each time I use one item from the unckeckedarray?