File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ ## Number Format
2+ The ** Number Format** formats the size of a specificed number.
3+ ``` sig
4+ Buffer.sizeOfNumberFormat(NumberFormat.Int8LE);
5+ ```
6+
7+ The formats for storing the numbers are:
8+ Int8LE: one byte, signed, little endian
9+ UInt8LE: one byte, unsigned, little endian
10+ Int8BE: one byte, signed, big endian
11+ UInt8BE: one byte, unsigned, big endian
12+ Int16LE: two bytes, signed, little endian
13+ UInt16LE: two bytes, unsigned, little endian
14+ Int16BE: two bytes, signed, big endian
15+ UInt16BE: two bytes, unsigned, big endian
16+ Int32LE: four bytes, signed, little endian
17+ Int32BE: four bytes, signed, big endian
18+
19+ ## See also
20+ [ buffers] ( https://github.com/DeveloperTryingToCodeLikeOtherOfThem/pxt-hardware-programming-docs/blob/main/docs/buffers.md )
You can’t perform that action at this time.
0 commit comments