(t Type)
| 17 | func isComplex(t Type) bool { return isBasic(t, IsComplex) } |
| 18 | func isNumeric(t Type) bool { return isBasic(t, IsNumeric) } |
| 19 | func isString(t Type) bool { return isBasic(t, IsString) } |
| 20 | func isIntegerOrFloat(t Type) bool { return isBasic(t, IsInteger|IsFloat) } |
| 21 | func isConstType(t Type) bool { return isBasic(t, IsConstType) } |
| 22 |
no test coverage detected