Comment on Conservative GC can be faster than precise GCparentComments−skybrian2yPerhaps because Go has pointers to the middle of records and arrays? (And records of arrays, etc.) It's an unusual language feature.−kbolino2yThis, plus Go pointers are real memory addresses, a property which is guaranteed by the runtime for unsafe pointer operations and C interop.
Comments
Perhaps because Go has pointers to the middle of records and arrays? (And records of arrays, etc.) It's an unusual language feature.
This, plus Go pointers are real memory addresses, a property which is guaranteed by the runtime for unsafe pointer operations and C interop.