Pointer is an opaque typed pointer and is guaranteed to be comparable.
| 11 | |
| 12 | // Pointer is an opaque typed pointer and is guaranteed to be comparable. |
| 13 | type Pointer struct { |
| 14 | p unsafe.Pointer |
| 15 | t reflect.Type |
| 16 | } |
| 17 | |
| 18 | // PointerOf returns a Pointer from v, which must be a |
| 19 | // reflect.Ptr, reflect.Slice, or reflect.Map. |
nothing calls this directly
no outgoing calls
no test coverage detected