github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/go/types/map.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 // Mapはマップ型を表します。 10 type Map struct { 11 key, elem Type 12 } 13 14 // NewMapは与えられたキーと要素の型のための新しいマップを返します。 15 func NewMap(key, elem Type) *Map 16 17 // Keyはマップmのキーの型を返します。 18 func (m *Map) Key() Type 19 20 // Elemは、マップmの要素の型を返します。 21 func (m *Map) Elem() Type 22 23 func (t *Map) Underlying() Type 24 func (t *Map) String() string