github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/go/types/slice.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  // Sliceはスライス型を表します。
    10  type Slice struct {
    11  	elem Type
    12  }
    13  
    14  // NewSliceは与えられた要素タイプ用の新しいスライスタイプを返します。
    15  func NewSlice(elem Type) *Slice
    16  
    17  // Elemはスライスsの要素の型を返します。
    18  func (s *Slice) Elem() Type
    19  
    20  func (s *Slice) Underlying() Type
    21  func (s *Slice) String() string