type Pointer … // NewPointer returns a new pointer type for the given element (base) type. func NewPointer(elem Type) *Pointer { … } // Elem returns the element type for the given pointer p. func (p *Pointer) Elem() Type { … } func (p *Pointer) Underlying() Type { … } func (p *Pointer) String() string { … }