Use unchecked-inc-int for performance example

This commit is contained in:
Joshua Suskalo 2022-01-18 15:50:36 -06:00
parent 95ff261189
commit 6c999861ad

View file

@ -611,7 +611,7 @@ floats, the following code might be used.
(recur (conj! floats (mem/read-float floats-slice
(unchecked-multiply-int index float-size)
mem/big-endian))
(inc index))))]
(unchecked-inc-int index))))]
(release-floats floats-addr)
ret))))
```