| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 37071b8 commit 838f7bd
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1442,7 +1442,7 @@ endian format (`readDoubleBE()` returns big endian, `readDoubleLE()` returns | |||
| 1442 | 1442 | little endian). | |
| 1443 | 1443 | ||
| 1444 | 1444 | Setting `noAssert` to `true` allows `offset` to be beyond the end of `buf`, but | |
| 1445 | - the result should be considered undefined behavior. | ||
| 1445 | + the resulting behavior is undefined. | ||
| 1446 | 1446 | ||
| 1447 | 1447 | Examples: | |
| 1448 | 1448 | ||
@@ -1479,7 +1479,7 @@ endian format (`readFloatBE()` returns big endian, `readFloatLE()` returns | |||
| 1479 | 1479 | little endian). | |
| 1480 | 1480 | ||
| 1481 | 1481 | Setting `noAssert` to `true` allows `offset` to be beyond the end of `buf`, but | |
| 1482 | - the result should be considered undefined behavior. | ||
| 1482 | + the resulting behavior is undefined. | ||
| 1483 | 1483 | ||
| 1484 | 1484 | Examples: | |
| 1485 | 1485 | ||
@@ -1513,7 +1513,7 @@ added: v0.5.0 | |||
| 1513 | 1513 | Reads a signed 8-bit integer from `buf` at the specified `offset`. | |
| 1514 | 1514 | ||
| 1515 | 1515 | Setting `noAssert` to `true` allows `offset` to be beyond the end of `buf`, but | |
| 1516 | - the result should be considered undefined behavior. | ||
| 1516 | + the resulting behavior is undefined. | ||
| 1517 | 1517 | ||
| 1518 | 1518 | Integers read from a `Buffer` are interpreted as two's complement signed values. | |
| 1519 | 1519 | ||
@@ -1548,7 +1548,7 @@ the specified endian format (`readInt16BE()` returns big endian, | |||
| 1548 | 1548 | `readInt16LE()` returns little endian). | |
| 1549 | 1549 | ||
| 1550 | 1550 | Setting `noAssert` to `true` allows `offset` to be beyond the end of `buf`, but | |
| 1551 | - the result should be considered undefined behavior. | ||
| 1551 | + the resulting behavior is undefined. | ||
| 1552 | 1552 | ||
| 1553 | 1553 | Integers read from a `Buffer` are interpreted as two's complement signed values. | |
| 1554 | 1554 | ||
@@ -1583,7 +1583,7 @@ the specified endian format (`readInt32BE()` returns big endian, | |||
| 1583 | 1583 | `readInt32LE()` returns little endian). | |
| 1584 | 1584 | ||
| 1585 | 1585 | Setting `noAssert` to `true` allows `offset` to be beyond the end of `buf`, but | |
| 1586 | - the result should be considered undefined behavior. | ||
| 1586 | + the resulting behavior is undefined. | ||
| 1587 | 1587 | ||
| 1588 | 1588 | Integers read from a `Buffer` are interpreted as two's complement signed values. | |
| 1589 | 1589 | ||
@@ -1621,7 +1621,7 @@ and interprets the result as a two's complement signed value. Supports up to 48 | |||
| 1621 | 1621 | bits of accuracy. | |
| 1622 | 1622 | ||
| 1623 | 1623 | Setting `noAssert` to `true` allows `offset` to be beyond the end of `buf`, but | |
| 1624 | - the result should be considered undefined behavior. | ||
| 1624 | + the resulting behavior is undefined. | ||
| 1625 | 1625 | ||
| 1626 | 1626 | Examples: | |
| 1627 | 1627 | ||
@@ -1650,7 +1650,7 @@ added: v0.5.0 | |||
| 1650 | 1650 | Reads an unsigned 8-bit integer from `buf` at the specified `offset`. | |
| 1651 | 1651 | ||
| 1652 | 1652 | Setting `noAssert` to `true` allows `offset` to be beyond the end of `buf`, but | |
| 1653 | - the result should be considered undefined behavior. | ||
| 1653 | + the resulting behavior is undefined. | ||
| 1654 | 1654 | ||
| 1655 | 1655 | Examples: | |
| 1656 | 1656 | ||
@@ -1683,7 +1683,7 @@ specified endian format (`readUInt16BE()` returns big endian, `readUInt16LE()` | |||
| 1683 | 1683 | returns little endian). | |
| 1684 | 1684 | ||
| 1685 | 1685 | Setting `noAssert` to `true` allows `offset` to be beyond the end of `buf`, but | |
| 1686 | - the result should be considered undefined behavior. | ||
| 1686 | + the resulting behavior is undefined. | ||
| 1687 | 1687 | ||
| 1688 | 1688 | Examples: | |
| 1689 | 1689 | ||
@@ -1722,7 +1722,7 @@ specified endian format (`readUInt32BE()` returns big endian, | |||
| 1722 | 1722 | `readUInt32LE()` returns little endian). | |
| 1723 | 1723 | ||
| 1724 | 1724 | Setting `noAssert` to `true` allows `offset` to be beyond the end of `buf`, but | |
| 1725 | - the result should be considered undefined behavior. | ||
| 1725 | + the resulting behavior is undefined. | ||
| 1726 | 1726 | ||
| 1727 | 1727 | Examples: | |
| 1728 | 1728 | ||
@@ -1758,7 +1758,7 @@ and interprets the result as an unsigned integer. Supports up to 48 | |||
| 1758 | 1758 | bits of accuracy. | |
| 1759 | 1759 | ||
| 1760 | 1760 | Setting `noAssert` to `true` allows `offset` to be beyond the end of `buf`, but | |
| 1761 | - the result should be considered undefined behavior. | ||
| 1761 | + the resulting behavior is undefined. | ||
| 1762 | 1762 | ||
| 1763 | 1763 | Examples: | |
| 1764 | 1764 | ||
@@ -2083,7 +2083,7 @@ endian). `value` *should* be a valid 64-bit double. Behavior is undefined when | |||
| 2083 | 2083 | `value` is anything other than a 64-bit double. | |
| 2084 | 2084 | ||
| 2085 | 2085 | Setting `noAssert` to `true` allows the encoded form of `value` to extend beyond | |
| 2086 | - the end of `buf`, but the result should be considered undefined behavior. | ||
| 2086 | + the end of `buf`, but the resulting behavior is undefined. | ||
| 2087 | 2087 | ||
| 2088 | 2088 | Examples: | |
| 2089 | 2089 | ||
@@ -2119,7 +2119,7 @@ endian). `value` *should* be a valid 32-bit float. Behavior is undefined when | |||
| 2119 | 2119 | `value` is anything other than a 32-bit float. | |
| 2120 | 2120 | ||
| 2121 | 2121 | Setting `noAssert` to `true` allows the encoded form of `value` to extend beyond | |
| 2122 | - the end of `buf`, but the result should be considered undefined behavior. | ||
| 2122 | + the end of `buf`, but the resulting behavior is undefined. | ||
| 2123 | 2123 | ||
| 2124 | 2124 | Examples: | |
| 2125 | 2125 | ||
@@ -2153,7 +2153,7 @@ signed 8-bit integer. Behavior is undefined when `value` is anything other than | |||
| 2153 | 2153 | a signed 8-bit integer. | |
| 2154 | 2154 | ||
| 2155 | 2155 | Setting `noAssert` to `true` allows the encoded form of `value` to extend beyond | |
| 2156 | - the end of `buf`, but the result should be considered undefined behavior. | ||
| 2156 | + the end of `buf`, but the resulting behavior is undefined. | ||
| 2157 | 2157 | ||
| 2158 | 2158 | `value` is interpreted and written as a two's complement signed integer. | |
| 2159 | 2159 | ||
@@ -2187,7 +2187,7 @@ endian). `value` *should* be a valid signed 16-bit integer. Behavior is undefine | |||
| 2187 | 2187 | when `value` is anything other than a signed 16-bit integer. | |
| 2188 | 2188 | ||
| 2189 | 2189 | Setting `noAssert` to `true` allows the encoded form of `value` to extend beyond | |
| 2190 | - the end of `buf`, but the result should be considered undefined behavior. | ||
| 2190 | + the end of `buf`, but the resulting behavior is undefined. | ||
| 2191 | 2191 | ||
| 2192 | 2192 | `value` is interpreted and written as a two's complement signed integer. | |
| 2193 | 2193 | ||
@@ -2221,7 +2221,7 @@ endian). `value` *should* be a valid signed 32-bit integer. Behavior is undefine | |||
| 2221 | 2221 | when `value` is anything other than a signed 32-bit integer. | |
| 2222 | 2222 | ||
| 2223 | 2223 | Setting `noAssert` to `true` allows the encoded form of `value` to extend beyond | |
| 2224 | - the end of `buf`, but the result should be considered undefined behavior. | ||
| 2224 | + the end of `buf`, but the resulting behavior is undefined. | ||
| 2225 | 2225 | ||
| 2226 | 2226 | `value` is interpreted and written as a two's complement signed integer. | |
| 2227 | 2227 | ||
@@ -2256,7 +2256,7 @@ Supports up to 48 bits of accuracy. Behavior is undefined when `value` is | |||
| 2256 | 2256 | anything other than a signed integer. | |
| 2257 | 2257 | ||
| 2258 | 2258 | Setting `noAssert` to `true` allows the encoded form of `value` to extend beyond | |
| 2259 | - the end of `buf`, but the result should be considered undefined behavior. | ||
| 2259 | + the end of `buf`, but the resulting behavior is undefined. | ||
| 2260 | 2260 | ||
| 2261 | 2261 | Examples: | |
| 2262 | 2262 | ||
@@ -2290,7 +2290,7 @@ valid unsigned 8-bit integer. Behavior is undefined when `value` is anything | |||
| 2290 | 2290 | other than an unsigned 8-bit integer. | |
| 2291 | 2291 | ||
| 2292 | 2292 | Setting `noAssert` to `true` allows the encoded form of `value` to extend beyond | |
| 2293 | - the end of `buf`, but the result should be considered undefined behavior. | ||
| 2293 | + the end of `buf`, but the resulting behavior is undefined. | ||
| 2294 | 2294 | ||
| 2295 | 2295 | Examples: | |
| 2296 | 2296 | ||
@@ -2324,7 +2324,7 @@ endian). `value` should be a valid unsigned 16-bit integer. Behavior is | |||
| 2324 | 2324 | undefined when `value` is anything other than an unsigned 16-bit integer. | |
| 2325 | 2325 | ||
| 2326 | 2326 | Setting `noAssert` to `true` allows the encoded form of `value` to extend beyond | |
| 2327 | - the end of `buf`, but the result should be considered undefined behavior. | ||
| 2327 | + the end of `buf`, but the resulting behavior is undefined. | ||
| 2328 | 2328 | ||
| 2329 | 2329 | Examples: | |
| 2330 | 2330 | ||
@@ -2362,7 +2362,7 @@ endian). `value` should be a valid unsigned 32-bit integer. Behavior is | |||
| 2362 | 2362 | undefined when `value` is anything other than an unsigned 32-bit integer. | |
| 2363 | 2363 | ||
| 2364 | 2364 | Setting `noAssert` to `true` allows the encoded form of `value` to extend beyond | |
| 2365 | - the end of `buf`, but the result should be considered undefined behavior. | ||
| 2365 | + the end of `buf`, but the resulting behavior is undefined. | ||
| 2366 | 2366 | ||
| 2367 | 2367 | Examples: | |
| 2368 | 2368 | ||
@@ -2400,7 +2400,7 @@ Supports up to 48 bits of accuracy. Behavior is undefined when `value` is | |||
| 2400 | 2400 | anything other than an unsigned integer. | |
| 2401 | 2401 | ||
| 2402 | 2402 | Setting `noAssert` to `true` allows the encoded form of `value` to extend beyond | |
| 2403 | - the end of `buf`, but the result should be considered undefined behavior. | ||
| 2403 | + the end of `buf`, but the resulting behavior is undefined. | ||
| 2404 | 2404 | ||
| 2405 | 2405 | Examples: | |
| 2406 | 2406 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments