Lars Hvam
Lars Hvam
its typically not needed, so instantiating it can wait
hex and xstring values are currently saved as strings, causing many conversions, plus offset'ed writes are slow? https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array need some performance tests => or feature flag
```abap DATA lv_int TYPE i. lv_int = floor( ( 280 + 3 ) / 4 ). WRITE lv_int. ``` expected value = 71
```abap DATA lv_value TYPE f. lv_value = 1. DO 25 TIMES. lv_value = lv_value / 10. ENDDO. WRITE |{ lv_value }|. ```