github.com/bir3/gocompiler@v0.9.2202/src/go/types/type.go (about) 1 // Copyright 2011 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package types 6 7 // A Type represents a type of Go. 8 // All types implement the Type interface. 9 type Type interface { 10 // Underlying returns the underlying type of a type. 11 Underlying() Type 12 13 // String returns a string representation of a type. 14 String() string 15 }