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 91ad072 commit 583452cCopy full SHA for 583452c
lib/node_modules/@stdlib/array/bool/docs/types/index.d.ts
@@ -360,6 +360,17 @@ declare class BooleanArray implements BooleanArrayInterface {
360
*/
361
at( i: number ): boolean | void;
362
363
+ /**
364
+ * Pointer to the underlying data buffer.
365
+ *
366
+ * @example
367
+ * var arr = new BooleanArray( 10 );
368
369
+ * var buf = arr.buffer;
370
+ * // returns <ArrayBuffer>
371
+ */
372
+ readonly buffer: ArrayBuffer;
373
+
374
/**
375
* Length (in bytes) of the array.
376
*
0 commit comments