For internal spidr use only.
sizeofPtr : Bits64prim__getArrayVoidPtr : AnyPtr -> Bits64 -> AnyPtrprim__setArrayVoidPtr : AnyPtr -> Bits64 -> AnyPtr -> PrimIO ()data Array : Type -> Typeinterface ArrayType : Type -> TypeelemSize : ArrayType a => Bits64get : ArrayType a => Array a -> Nat -> aset : ArrayType a => HasIO io => Array a -> Nat -> a -> io ()mkArray : HasIO io => ArrayType a => Nat -> io (Array a)An uninitialized array. Contents may be anything.
fromList : HasIO io => ArrayType a => List a -> io (Array a)toList : ArrayType a => Array a -> List a