We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6d244f6 + 7fc248d commit 07e9c15Copy full SHA for 07e9c15
docs/arraybuffer.md
@@ -754,6 +754,8 @@ const dv = new DataView(buffer);
754
- **`getUint16`**:读取 2 个字节,返回一个无符号的 16 位整数。
755
- **`getInt32`**:读取 4 个字节,返回一个 32 位整数。
756
- **`getUint32`**:读取 4 个字节,返回一个无符号的 32 位整数。
757
+- **`getBigInt64`**:读取 8 个字节,返回一个 64 位整数。
758
+- **`getBigUint64`**:读取 8 个字节,返回一个无符号的 64 位整数。
759
- **`getFloat32`**:读取 4 个字节,返回一个 32 位浮点数。
760
- **`getFloat64`**:读取 8 个字节,返回一个 64 位浮点数。
761
@@ -796,6 +798,8 @@ DataView 视图提供 8 个方法写入内存。
796
798
- **`setUint16`**:写入 2 个字节的 16 位无符号整数。
797
799
- **`setInt32`**:写入 4 个字节的 32 位整数。
800
- **`setUint32`**:写入 4 个字节的 32 位无符号整数。
801
+- **`setBigInt64`**:写入 8 个字节的 64 位整数。
802
+- **`setBigUint64`**:写入 8 个字节的 64 位无符号整数。
803
- **`setFloat32`**:写入 4 个字节的 32 位浮点数。
804
- **`setFloat64`**:写入 8 个字节的 64 位浮点数。
805
0 commit comments