Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rust/arrow/src/array/array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2107,13 +2107,13 @@ impl From<(Vec<(Field, ArrayRef)>, Buffer, usize)> for StructArray {
/// assert_eq!(array.keys().collect::<Vec<Option<i8>>>(), vec![Some(0), Some(0), Some(1), Some(2)]);
/// ```
pub struct DictionaryArray<K: ArrowPrimitiveType> {
/// Array of keys, much like a PrimitiveArray
/// Array of keys, stored as a PrimitiveArray<K>.
data: ArrayDataRef,

/// Pointer to the key values.
raw_values: RawPtrBox<K::Native>,

/// Array of any values.
/// Array of dictionary values (can by any DataType).
values: ArrayRef,

/// Values are ordered.
Expand Down
Loading