From 0e2e1fddfc6aa1ce4f7be69898473a49cac99513 Mon Sep 17 00:00:00 2001 From: Ianna Osborne Date: Wed, 29 May 2024 18:28:49 +0200 Subject: [PATCH] test: documenter --- docs/src/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/index.md b/docs/src/index.md index d16c577..4507249 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -6,7 +6,7 @@ This package is a complete, one-to-one implementation of the Awkward Array data Beyond communication with Python, columnar memory layouts have some advantages: data in an Awkward Array is less fragmented than the equivalent `Vectors` of `Vectors`, `NamedTuples`, `Missing`, and `Union` data of the built-in Julia types. Other, well-established packages provide some of these capabilities: [ArraysOfArrays.jl](https://github.com/JuliaArrays/ArraysOfArrays.jl) does `Vectors` of variable-length `Vectors`, and [StructArrays.jl](https://github.com/JuliaArrays/StructArrays.jl) toggles between array-of-structs/struct-of-arrays like Awkward records do, but Awkward Arrays represent a closure over a large suite of data types: - * booleans/numbers/dates/times + * booleans / numbers / dates / times * variable-length and regular-sized lists * structs with named (record) and unnamed (tuple) fields * missing data in a variety of representations (bit vectors, byte vectors, union-indexes)