This is a bit long but the TLDR of it is, you will be able to toggle a memory control compiler option in your slice.toml manifest file.
What will this option do?
This option will allow exposure to low level types eg: Byte, short, long as well as direct access to pointers and addresses.
It is important to note that with this option, the compiler will consider everything you type "unsafe" and the compiler will not do anything to try and fix your code that is compiled with this option.
This is a bit long but the TLDR of it is, you will be able to toggle a memory control compiler option in your
slice.tomlmanifest file.What will this option do?
This option will allow exposure to low level types eg:
Byte,short,longas well as direct access to pointers and addresses.It is important to note that with this option, the compiler will consider everything you type "unsafe" and the compiler will not do anything to try and fix your code that is compiled with this option.