struct #7
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
by storing the stride of an array in the array itself, as opposed to potentially requiring a dedicated argument on a per method basis,
since the stride is stored at the array level and not per element, consider using a list1 instead for heterogeneous storage
continuous array of references, where pointers abstract the stride variance of individual elements away from the array's memory by providing fixed size addresses in their place.
this adds a level of indirection, and requires additional space in order to store the strides of every element ; either as wrapper structs ({address, stride}), or by storing a parallel index synchronised set of strides ↩︎
should the raw and length fields be moved to their own substructure abstracting a memory region ? like a pointer with a length