Fix line length of types (tidied up table)

pull/135/head
terminalforlife 4 years ago
parent a461a0c912
commit aea321e9f0

@ -9,18 +9,18 @@
// * Optional a variable that can hold either a value or no value. // * Optional a variable that can hold either a value or no value.
// * Tuples // * Tuples
// //
// | -------|-------------------|-----------------------------------------------| // +--------+-------------------+--------------------------------------------+
// | Type | Typical Bit Width| Typical Range | // | Type | Typical Bit Width | Typical Range |
// | -------|-------------------|-----------------------------------------------| // | -------|-------------------|--------------------------------------------+
// | Int8 | 1byte | -127 to 127 | // | Int8 | 1byte | -127 to 127 |
// | UInt8 | 1byte | 0 to 255 | // | UInt8 | 1byte | 0 to 255 |
// | Int32 | 4bytes | -2147483648 to 2147483647 | // | Int32 | 4bytes | -2147483648 to 2147483647 |
// | UInt32 | 4bytes | 0 to 4294967295 | // | UInt32 | 4bytes | 0 to 4294967295 |
// | Int64 | 8bytes | -9223372036854775808 to 9223372036854775807 | // | Int64 | 8bytes | -9223372036854775808 to 9223372036854775807|
// | UInt64 | 8bytes | 0 to 18446744073709551615 | // | UInt64 | 8bytes | 0 to 18446744073709551615 |
// | Float | 4bytes | 1.2E-38 to 3.4E+38 (~6 digits) | // | Float | 4bytes | 1.2E-38 to 3.4E+38 (~6 digits) |
// | Double | 8bytes | 2.3E-308 to 1.7E+308 (~15 digits) | // | Double | 8bytes | 2.3E-308 to 1.7E+308 (~15 digits) |
// | -------|-------------------|-----------------------------------------------| // +--------+-------------------+--------------------------------------------+
// Type Aliases: // Type Aliases:
// //

Loading…
Cancel
Save