Type is a type that can be used to represent a value.
| 10 | |
| 11 | // Type is a type that can be used to represent a value. |
| 12 | type Type interface { |
| 13 | Nature() Nature |
| 14 | Equal(Type) bool |
| 15 | String() string |
| 16 | } |
| 17 | |
| 18 | var ( |
| 19 | Int = TypeOf(0) |
no outgoing calls
no test coverage detected
searching dependent graphs…