Replace byte pointer with a generic pointer type #107
Loading…
x
Reference in New Issue
Block a user
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?
As it turns out not all typed pointers are the same. There is hardware, where different pointers can have different alignment, depending on the size of the target type. Therefore
^Byte
is not suitable as generic pointer type. IntroducePointer
type representing any pointer.nil
will be of this type, so it will support implicit conversion from and to this type.Byte
isn't needed anymore probably, sinceChar
is basically the same.