Pointer returns the underlying pointer of the given value for the following types: chan, map, pointer, unsafe.Pointer, slice, func.
()
| 251 | // Pointer returns the underlying pointer of the given value for the following |
| 252 | // types: chan, map, pointer, unsafe.Pointer, slice, func. |
| 253 | func (v Value) Pointer() uintptr { |
| 254 | return uintptr(v.UnsafePointer()) |
| 255 | } |
| 256 | |
| 257 | // UnsafePointer returns the underlying pointer of the given value for the |
| 258 | // following types: chan, map, pointer, unsafe.Pointer, slice, func. |