/* * Copyright (C)2005-2013 Haxe Foundation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ // This file is generated, do not edit! package js.html; /**
The Float64Array
type represents an array of 64-bit floating point numbers (corresponding to the C double
data type).
Once established, you can reference elements in the array using the object's methods, or using standard array index syntax (that is, using bracket notation).
TypedArray
represents any of the typed array object types.Float64Array Float64Array(unsigned long length); |
Float64Array Float64Array (TypedArray array); |
Float64Array Float64Array (sequence<type> array); |
Float64Array Float64Array (ArrayBuffer buffer, optional unsigned long byteOffset, optional unsigned long length); |
Returns a new Float64Array
object.
Float64Array Float64Array( unsigned long length ); Float64Array Float64Array( TypedArray array ); Float64Array Float64Array( sequence<type> array ); Float64Array Float64Array( ArrayBuffer buffer, optional unsigned long byteOffset, optional unsigned long length );
length
array
Array
), or a sequence of objects of a particular type, to copy into a new ArrayBuffer
. Each value in the source array is converted to a 64-bit floating point number before being copied into the new array.buffer
ArrayBuffer
to use as the storage for the new Float64Array
object.byteOffset
Float64Array
's view of the buffer will start with the first byte.A new Float64Array
object representing the specified data buffer.
Sets multiple values in the typed array, reading input values from a specified array.
array
ArrayBuffer
; the browser will intelligently copy the source range of the buffer to the destination range.array
. If you omit this value, 0 is assumed (that is, the source array
will overwrite values in the target array starting at index 0).