We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d3352e commit 91ad072Copy full SHA for 91ad072
lib/node_modules/@stdlib/array/complex64/docs/types/index.d.ts
@@ -368,6 +368,17 @@ declare class Complex64Array implements Complex64ArrayInterface {
368
*/
369
at( i: number ): Complex64 | void;
370
371
+ /**
372
+ * Pointer to the underlying data buffer.
373
+ *
374
+ * @example
375
+ * var arr = new Complex64Array( 10 );
376
377
+ * var buf = arr.buffer;
378
+ * // returns <ArrayBuffer>
379
+ */
380
+ readonly buffer: ArrayBuffer;
381
+
382
/**
383
* Length (in bytes) of the array.
384
*
0 commit comments