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

Function isTableOfSimpleTypes

include/daScript/simulate/debug_info.h:404–408  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls 1

isSimpleTypeMethod · 0.80

Tested by

no test coverage detected