IsGoType determines whether a data type is golang type
(dataType DataType)
| 524 | |
| 525 | // IsGoType determines whether a data type is golang type |
| 526 | func IsGoType(dataType DataType) bool { |
| 527 | // for now we only have GeoShape |
| 528 | return dataType == GeoShape |
| 529 | } |
| 530 | |
| 531 | // IsEnumType determines whether a data type is enum type |
| 532 | func IsEnumType(dataType DataType) bool { |
no outgoing calls
no test coverage detected