| 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; |
| 412 | } |
| 413 | return true; |
| 414 | } |
| 415 | __forceinline bool isVariantOfSimpleTypes() const { |
| 416 | for ( uint32_t i=0, is=argCount; i!=is; ++i ) { |
| 417 | if ( !argTypes[i]->isSimpleType() ) return false; |
nothing calls this directly
no test coverage detected