| 402 | return firstType && firstType->isSimpleType(); |
| 403 | } |
| 404 | __forceinline bool isTableOfSimpleTypes() const { |
| 405 | return firstType && secondType |
| 406 | && firstType->isSimpleType() |
| 407 | && secondType->isSimpleType(); |
| 408 | } |
| 409 | __forceinline bool isTupleOfSimpleTypes() const { |
| 410 | for ( uint32_t i=0, is=argCount; i!=is; ++i ) { |
| 411 | if ( !argTypes[i]->isSimpleType() ) return false; |
nothing calls this directly
no test coverage detected