bireader 1.0.51 → 1.0.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +65 -5
- package/lib/cjs/index.cjs +1616 -1291
- package/lib/cjs/index.cjs.map +1 -1
- package/lib/cjs/index.d.cts +1535 -1287
- package/lib/cjs/index.d.cts.map +1 -1
- package/lib/esm/index.d.mts +1535 -1287
- package/lib/esm/index.d.mts.map +1 -1
- package/lib/esm/index.mjs +1616 -1291
- package/lib/esm/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -307,6 +307,26 @@ Common functions for setup, movement, manipulation and math shared by both.
|
|
|
307
307
|
<td>Presets</td>
|
|
308
308
|
<td>bigEndian(), big(), be()<br>littleEndian(), little(), le()</td>
|
|
309
309
|
</tr>
|
|
310
|
+
<tr>
|
|
311
|
+
<td>Name</td>
|
|
312
|
+
<td>length()</td>
|
|
313
|
+
<td align="center" rowspan="2">none</td>
|
|
314
|
+
<td rowspan="2">Gets the current buffer size in bytes.</td>
|
|
315
|
+
</tr>
|
|
316
|
+
<tr>
|
|
317
|
+
<td>Aliases</td>
|
|
318
|
+
<td>size, FileSize()</td>
|
|
319
|
+
</tr>
|
|
320
|
+
<tr>
|
|
321
|
+
<td>Name</td>
|
|
322
|
+
<td>lengthB()</td>
|
|
323
|
+
<td align="center" rowspan="2">none</td>
|
|
324
|
+
<td rowspan="2">Gets the current buffer size in bits.</td>
|
|
325
|
+
</tr>
|
|
326
|
+
<tr>
|
|
327
|
+
<td>Aliases</td>
|
|
328
|
+
<td>sizeB, FileSizeB()</td>
|
|
329
|
+
</tr>
|
|
310
330
|
<tr>
|
|
311
331
|
<td>Name</td>
|
|
312
332
|
<td>getOffset()</td>
|
|
@@ -315,17 +335,17 @@ Common functions for setup, movement, manipulation and math shared by both.
|
|
|
315
335
|
</tr>
|
|
316
336
|
<tr>
|
|
317
337
|
<td>Aliases</td>
|
|
318
|
-
<td>tell(), saveOffset()</td>
|
|
338
|
+
<td>FTell(), tell(), saveOffset()</td>
|
|
319
339
|
</tr>
|
|
320
340
|
<tr>
|
|
321
341
|
<td>Name</td>
|
|
322
342
|
<td>getOffsetBit()</td>
|
|
323
343
|
<td align="center" rowspan="2">none</td>
|
|
324
|
-
<td rowspan="2">Gets current bit position (0-7).</td>
|
|
344
|
+
<td rowspan="2">Gets current byte's bit position (0-7).</td>
|
|
325
345
|
</tr>
|
|
326
346
|
<tr>
|
|
327
347
|
<td>Aliases</td>
|
|
328
|
-
<td>tellB(), saveOffsetBit()</td>
|
|
348
|
+
<td>FTellB(), tellB(), saveOffsetBit()</td>
|
|
329
349
|
</tr>
|
|
330
350
|
<tr>
|
|
331
351
|
<td>Name</td>
|
|
@@ -337,6 +357,36 @@ Common functions for setup, movement, manipulation and math shared by both.
|
|
|
337
357
|
<td>Aliases</td>
|
|
338
358
|
<td>tellAbsB(), saveOffsetAbsBit()</td>
|
|
339
359
|
</tr>
|
|
360
|
+
<tr>
|
|
361
|
+
<td>Name</td>
|
|
362
|
+
<td>remain()</td>
|
|
363
|
+
<td align="center" rowspan="2">none</td>
|
|
364
|
+
<td rowspan="2">Size in bytes of current read position to the end.</td>
|
|
365
|
+
</tr>
|
|
366
|
+
<tr>
|
|
367
|
+
<td>Aliases</td>
|
|
368
|
+
<td>FEoF()</td>
|
|
369
|
+
</tr>
|
|
370
|
+
<tr>
|
|
371
|
+
<td>Name</td>
|
|
372
|
+
<td>remainB()</td>
|
|
373
|
+
<td align="center" rowspan="2">none</td>
|
|
374
|
+
<td rowspan="2">Size in bits of current read position to the end.</td>
|
|
375
|
+
</tr>
|
|
376
|
+
<tr>
|
|
377
|
+
<td>Aliases</td>
|
|
378
|
+
<td>FEoFB()</td>
|
|
379
|
+
</tr>
|
|
380
|
+
<tr>
|
|
381
|
+
<td>Name</td>
|
|
382
|
+
<td>getLine()</td>
|
|
383
|
+
<td align="center" rowspan="2">none</td>
|
|
384
|
+
<td rowspan="2">Row line of the file (16 bytes per row).</td>
|
|
385
|
+
</tr>
|
|
386
|
+
<tr>
|
|
387
|
+
<td>Aliases</td>
|
|
388
|
+
<td>row()</td>
|
|
389
|
+
</tr>
|
|
340
390
|
<tr>
|
|
341
391
|
<td>Name</td>
|
|
342
392
|
<td>get() </td>
|
|
@@ -457,7 +507,7 @@ Common functions for setup, movement, manipulation and math shared by both.
|
|
|
457
507
|
</tr>
|
|
458
508
|
<tr>
|
|
459
509
|
<td>Alias</td>
|
|
460
|
-
<td>seek(<b>byte</b>, bit)<br>jump(<b>bytes</b>, bits)</td>
|
|
510
|
+
<td>FSeek(<b>byte</b>, bit)<br>seek(<b>byte</b>, bit)<br>jump(<b>bytes</b>, bits)</td>
|
|
461
511
|
</tr>
|
|
462
512
|
<tr>
|
|
463
513
|
<td>Name</td>
|
|
@@ -477,7 +527,17 @@ Common functions for setup, movement, manipulation and math shared by both.
|
|
|
477
527
|
</tr>
|
|
478
528
|
<tr>
|
|
479
529
|
<td>Alias</td>
|
|
480
|
-
<td>
|
|
530
|
+
<td>gotoStart()</td>
|
|
531
|
+
</tr>
|
|
532
|
+
<tr>
|
|
533
|
+
<td>Name</td>
|
|
534
|
+
<td>last()</td>
|
|
535
|
+
<td align="center" rowspan="2">none</td>
|
|
536
|
+
<td rowspan="2">Moves current byte position to end of data.</td>
|
|
537
|
+
</tr>
|
|
538
|
+
<tr>
|
|
539
|
+
<td>Alias</td>
|
|
540
|
+
<td>gotoEnd(), EoF()</td>
|
|
481
541
|
</tr>
|
|
482
542
|
<th align="center" colspan="4"><i>Manipulation</i></th>
|
|
483
543
|
<tr>
|