- Notifications
You must be signed in to change notification settings - Fork1.2k
JsGetTypedArrayInfo
Limin Zhu edited this pageOct 9, 2015 ·1 revision
Obtains frequently used properties of a typed array.
STDAPI_(JsErrorCode) JsGetTypedArrayInfo( _In_ JsValueRef typedArray, _Out_opt_ JsTypedArrayType *arrayType, _Out_opt_ JsValueRef *arrayBuffer, _Out_opt_ unsigned int *byteOffset, _Out_opt_ unsigned int *byteLength);
- typedArray: The typed array instance.
- arrayType: The type of the array.
- arrayBuffer: The ArrayBuffer backstore of the array.
- byteOffset: The offset in bytes from the start of arrayBuffer referenced by the array.
- byteLength: The number of bytes in the array.
The codeJsNoError if the operation succeeded, a failure code otherwise.
- Architecture Overview
- Building ChakraCore
- ChakraCore Code Structure
- Contributor Guidance
- Engineering Notes
- Embedding ChakraCore
- Testing ChakraCore
- Getting ChakraCore binaries
- Label Glossary
- Resources
- Roadmap / Release Notes
Want to contribute to this Wiki?Fork it and send a pull request!