ChakraCore is the core part of the Chakra Javascript engine that powers Microsoft Edge
wyrichte on ADO_test
Update ChakraCoreStatic.cpp (compare)
wyrichte on Test-PR-webhook---don't-merge
Update ChakraCoreStatic.cpp (compare)
wyrichte on Test-PR-webhook---don't-merge
Update ChakraCoreStatic.cpp (compare)
The Float32Array typed array represents an array of 32-bit floating point numbers (corresponding to the C float data type) in the platform byte order. If control over byte order is needed, use DataView instead.
// assuming Array is already a JsValueRef for the array in question
// then do the following
JsPropertyIdRef lengthPropId;
JsValueRef arrayLengthObj;
int arrayLength = 0;
CreatePropertyIdFromString("length", &lengthPropId);
JsGetProperty(Array, lengthPropId, &arrayLengthObj);
JsNumberToInt(arrayLengthObj, &arrayLength);