Skip to content

Commit 2cc4b70

Browse files
committed
[NFC][ntuple] Fix fundamental type table formatting
1 parent 8f63509 commit 2cc4b70

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

tree/ntuple/v7/doc/BinaryFormatSpecification.md

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -839,25 +839,24 @@ The possible combinations are marked as `W` in the following table.
839839
Additionally, some types allow for reading from certain column types but not to write into them.
840840
Such cases are marked as `R` in the table.
841841

842-
| | Fundamental C++ Type ||
843-
| Column Type | bool | std::byte | char | int8_t | uint8_t | int16_t | uint16_t | int32_t | uint32_t | int64_t | uint64_t | float | double |
844-
|---------------|:----:|:---------:|:----:|:------:|:-------:|:-------:|:--------:|:-------:|:--------:|:-------:|:--------:|:-----:|:------:|
845-
| Bit | W* | | R | R | R | R | R | R | R | R | R | | |
846-
| Byte | | W* | | | | | | | | | | | |
847-
| Char | R | | W* | R | R | R | R | R | R | R | R | | |
848-
| Int8 | R | | R | W* | R | R | R | R | R | R | R | | |
849-
| UInt8 | R | | R | R | W* | R | R | R | R | R | R | | |
850-
| (Split)Int16 | R | | R | R | R | W* | R | R | R | R | R | | |
851-
| (Split)UInt16 | R | | R | R | R | R | W* | R | R | R | R | | |
852-
| (Split)Int32 | R | | R | R | R | R | R | W* | R | R | R | | |
853-
| (Split)UInt32 | R | | R | R | R | R | R | R | W* | R | R | | |
854-
| (Split)Int64 | R | | R | R | R | R | R | R | R | W* | R | | |
855-
| (Split)UInt64 | R | | R | R | R | R | R | R | R | R | W* | | |
856-
| Real16 | | | | | | | | | | | | W | W |
857-
| (Split)Real32 | | | | | | | | | | | | W* | W |
858-
| (Split)Real64 | | | | | | | | | | | | R | W* |
859-
| Real32Trunc | | | | | | | | | | | | W | W |
860-
| Real32Quant | | | | | | | | | | | | W | W |
842+
| Column Type / Fundamental C++ Type | `bool` | `std::byte` | `char` | `int8_t` | `uint8_t` | `int16_t` | `uint16_t` | `int32_t` | `uint32_t` | `int64_t` | `uint64_t` | `float` | `double` |
843+
| ---------------------------------- |:------:|:-----------:|:------:|:--------:|:---------:|:---------:|:----------:|:---------:|:----------:|:---------:|:----------:|:-------:|:--------:|
844+
| Bit | W* | | R | R | R | R | R | R | R | R | R | | |
845+
| Byte | | W* | | | | | | | | | | | |
846+
| Char | R | | W* | R | R | R | R | R | R | R | R | | |
847+
| Int8 | R | | R | W* | R | R | R | R | R | R | R | | |
848+
| UInt8 | R | | R | R | W* | R | R | R | R | R | R | | |
849+
| (Split)Int16 | R | | R | R | R | W* | R | R | R | R | R | | |
850+
| (Split)UInt16 | R | | R | R | R | R | W* | R | R | R | R | | |
851+
| (Split)Int32 | R | | R | R | R | R | R | W* | R | R | R | | |
852+
| (Split)UInt32 | R | | R | R | R | R | R | R | W* | R | R | | |
853+
| (Split)Int64 | R | | R | R | R | R | R | R | R | W* | R | | |
854+
| (Split)UInt64 | R | | R | R | R | R | R | R | R | R | W* | | |
855+
| Real16 | | | | | | | | | | | | W | W |
856+
| (Split)Real32 | | | | | | | | | | | | W* | W |
857+
| (Split)Real64 | | | | | | | | | | | | R | W* |
858+
| Real32Trunc | | | | | | | | | | | | W | W |
859+
| Real32Quant | | | | | | | | | | | | W | W |
861860

862861
Possibly available `const` and `volatile` qualifiers of the C++ types are ignored for serialization.
863862
The default column for serialization is denoted with an asterisk.

0 commit comments

Comments
 (0)