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 4fb75ab commit 8d3352eCopy full SHA for 8d3352e
lib/node_modules/@stdlib/array/complex128/docs/types/index.d.ts
@@ -368,6 +368,17 @@ declare class Complex128Array implements Complex128ArrayInterface {
368
*/
369
at( i: number ): Complex128 | void;
370
371
+ /**
372
+ * Pointer to the underlying data buffer.
373
+ *
374
+ * @example
375
+ * var arr = new Complex128Array( 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