isValueType function

bool isValueType(
  1. ProgrammaticScryptoSborValue value
)

Implementation

bool isValueType(ProgrammaticScryptoSborValue value) {
  return value is! ProgrammaticScryptoSborValueTuple &&
      value is! ProgrammaticScryptoSborValueArray &&
      value is! ProgrammaticScryptoSborValueMap;
}