Hi, a Nim newbie here, is there a way to set the data pointer of a Nim sequence? So that I could use the sequence to access memory that has been allocated by some library like PortAudio or OpenGL.
In Golang e.g. I would create a Golang slice and get access to its header, and set the "data" and "length" members of it, so that I can have runtime bounds checking for the external memory. Thanks a lot!