()
| 86 | ) |
| 87 | |
| 88 | func (p ptr) String() string { return PointerToString(p) } |
| 89 | func (p ptr) IsNullptr() bool { return p.addr == 0 } |
| 90 | func (p ptr) Address() uint64 { return p.addr } |
| 91 | func (p ptr) Offset(n uint64) Pointer { return ptr{p.addr + n, p.elTy} } |
nothing calls this directly
no test coverage detected