MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / isTupleOfSimpleTypes

Function isTupleOfSimpleTypes

include/daScript/simulate/debug_info.h:409–414  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 1

isSimpleTypeMethod · 0.80

Tested by

no test coverage detected