| 399 | return dimSize == 1 && isSimpleBaseType(type); |
| 400 | } |
| 401 | __forceinline bool isArrayOfSimpleType() const { |
| 402 | return firstType && firstType->isSimpleType(); |
| 403 | } |
| 404 | __forceinline bool isTableOfSimpleTypes() const { |
| 405 | return firstType && secondType |
| 406 | && firstType->isSimpleType() |
nothing calls this directly
no test coverage detected