This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 724eb0c rewrite doc (#1450)
724eb0c is described below
commit 724eb0c3feda3d6564a0422af6138aa50f77d33f
Author: Remzi Yang <[email protected]>
AuthorDate: Thu Mar 17 20:43:10 2022 +0800
rewrite doc (#1450)
Signed-off-by: remzi <[email protected]>
---
arrow/src/array/array_list.rs | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/arrow/src/array/array_list.rs b/arrow/src/array/array_list.rs
index b851a9f..e918683 100644
--- a/arrow/src/array/array_list.rs
+++ b/arrow/src/array/array_list.rs
@@ -49,7 +49,10 @@ impl OffsetSizeTrait for i64 {
}
}
-/// Generic struct for a primitive Array
+/// Generic struct for a variable-size list array.
+///
+/// Columnar format in Apache Arrow:
+///
<https://arrow.apache.org/docs/format/Columnar.html#variable-size-list-layout>
///
/// For non generic lists, you may wish to consider using [`ListArray`] or
[`LargeListArray`]`
pub struct GenericListArray<OffsetSize> {