| ArrayBufferNative |
|
| ArrayBufferViewNative |
Base class for JS implementation of various views.
|
| DataViewNative |
|
| DataViewNativeEmul |
JS native implementation of DataView for platforms with typed array
support but missing DataView (ie, Firefox).
|
| Float32ArrayNative |
|
| Float64ArrayNative |
|
| Int16ArrayNative |
|
| Int32ArrayNative |
|
| Int8ArrayNative |
|
| JsUtils |
JS-specific utility methods, for use in client-side code that has the values in
JS objects already.
|
| NativeImpl |
The default implementation class, which assumes that Typed Arrays might be
supported and does runtime checks where necessary, substituting emulated
implementations of DataView and Uint8ClampedArray where they are missing.
|
| NativeImplFull |
An implementation class used for browsers which provide full native
implementations of all typed array classes.
|
| NoSupportImpl |
The implementation class for browsers known to have no
support (even emulated) for typed arrays.
|
| Uint16ArrayNative |
|
| Uint32ArrayNative |
|
| Uint8ArrayNative |
|
| Uint8ClampedArrayNativeEmul |
|