I have two variables of type "UnsafePointer<Float>" that should point to two C arrays of floats.
I already know how to access the value of the memory to which they point.
What I don't know how to do, is determine if they both refer to the same memory (i.e.: both point to the same address).
How does one check whether the memory addresses stored by two UnsafePointers are the same?