github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/go/types/pointer.go (about) 1 // 「go test -run=Generate -write=all」によって生成されたコードです。編集しないでください。 2 3 // Copyright 2011 The Go Authors. All rights reserved. 4 // Use of this source code is governed by a BSD-style 5 // license that can be found in the LICENSE file. 6 7 package types 8 9 // ポインタはポインタ型を表します。 10 type Pointer struct { 11 base Type 12 } 13 14 // NewPointerは、指定された要素(ベース)タイプの新しいポインタータイプを返します。 15 func NewPointer(elem Type) *Pointer 16 17 // Elemは与えられたポインタpの要素の型を返します。 18 func (p *Pointer) Elem() Type 19 20 func (p *Pointer) Underlying() Type 21 func (p *Pointer) String() string