Skip to content

Commit

Permalink
docs: Mention 'Array' in data types overview
Browse files Browse the repository at this point in the history
  • Loading branch information
KDruzhkin authored Aug 6, 2024
1 parent 08311b9 commit 9b9a60b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions docs/user-guide/concepts/data-types/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ from Arrow, with the exception of `String` (this is actually `LargeUtf8`), `Cate
| | `Float64` | 64-bit floating point. |
| Nested | `Struct` | A struct array is represented as a `Vec<Series>` and is useful to pack multiple/heterogeneous values in a single column. |
| | `List` | A list array contains a child array containing the list values and an offset array. (this is actually Arrow `LargeList` internally). |
| | `Array` | A fixed-length homogeneous array. |
| Temporal | `Date` | Date representation, internally represented as days since UNIX epoch encoded by a 32-bit signed integer. |
| | `Datetime` | Datetime representation, internally represented as microseconds since UNIX epoch encoded by a 64-bit signed integer. |
| | `Duration` | A timedelta type, internally represented as microseconds. Created when subtracting `Date/Datetime`. |
Expand Down

0 comments on commit 9b9a60b

Please sign in to comment.