As of Nim 2.3.1, std/rtarrays is unstable and only contains two routiues and even cannot get length!
Procs
proc `=destroy`(self: RtArray[auto]) {....raises: [].}
- Source Edit
proc `=wasMoved`[T](self: var RtArray[T])
- Source Edit
proc getRawData[T](self: var RtArray[T]): ptr UncheckedArray[T]
- we only gant to return a writable view of self, may not be ptr UncheckedArray in the future Source Edit
proc getRORawData[T](self: RtArray[T]): ptr UncheckedArray[T]
- Source Edit
proc initRtArray[T](len: Natural): RtArray[T]
- Source Edit
proc initRtArray[T](oa: openArray[T]): RtArray[T]
- Source Edit