github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/go/types/predicates.go (about)

     1  // "go test -run=Generate -write=all"によって生成されたコードです。編集しないでください。
     2  
     3  // Copyright 2012 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  // このファイルではよく使用される型の述語を実装しています。
     8  
     9  package types
    10  
    11  // IsInterfaceはtがインターフェース型かどうかを報告します。
    12  func IsInterface(t Type) bool
    13  
    14  // Comparableは、型Tの値が比較可能かどうかを報告します。
    15  func Comparable(T Type) bool
    16  
    17  // Defaultは、「未指定の」型に対して「型付き」のデフォルト型を返します;
    18  // 他のすべての型に対しては、入力された型を返します。未指定のnilのデフォルト型は未指定のnilです。
    19  func Default(t Type) Type