Why is there no pointer arithmetic? [#](https://odin-lang.org/docs/faq/#why-is-there-no-pointer-arithmetic)
Type safety and simplicity. Due to slices being a first-class datatype, a lot of the need for pointer arithmetic is reduced. However, if you still require it, the mem package provides so utility functions: mem.ptr_offset and mem.ptr_sub. Odin will allow the programmer to do unsafe things if they so wish.
I think this is a typo:
provides so utility functions
Should be
some
probably.