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 6bc0c5d commit e9b7fafCopy full SHA for e9b7faf
1 file changed
doc/api/buffer.md
@@ -12,7 +12,8 @@ streams in TCP streams, file system operations, and other contexts.
12
With [`TypedArray`] now available, the `Buffer` class implements the
13
[`Uint8Array`] API in a manner that is more optimized and suitable for Node.js.
14
15
-Instances of the `Buffer` class are similar to arrays of integers but
+Instances of the `Buffer` class are similar to arrays of integers from `0` to
16
+`255` (other integers are coerced to this range by `& 255` operation) but
17
correspond to fixed-sized, raw memory allocations outside the V8 heap.
18
The size of the `Buffer` is established when it is created and cannot be
19
changed.
0 commit comments