Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
export missing BinaryValueIter (#526)
Browse files Browse the repository at this point in the history
  • Loading branch information
yjhmelody committed Oct 13, 2021
1 parent 9a884e6 commit 2e55314
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/array/binary/iterator.rs
Expand Up @@ -14,6 +14,7 @@ pub struct BinaryValueIter<'a, O: Offset> {
}

impl<'a, O: Offset> BinaryValueIter<'a, O> {
/// Creates a new [`BinaryValueIter`]
pub fn new(array: &'a BinaryArray<O>) -> Self {
Self { array, index: 0 }
}
Expand Down
2 changes: 1 addition & 1 deletion src/array/mod.rs
Expand Up @@ -379,7 +379,7 @@ pub mod ord;
pub use display::get_display;
pub use equal::equal;

pub use binary::{BinaryArray, MutableBinaryArray};
pub use binary::{BinaryArray, BinaryValueIter, MutableBinaryArray};
pub use boolean::{BooleanArray, MutableBooleanArray};
pub use dictionary::{DictionaryArray, DictionaryKey, MutableDictionaryArray};
pub use fixed_size_binary::{FixedSizeBinaryArray, MutableFixedSizeBinaryArray};
Expand Down

0 comments on commit 2e55314

Please sign in to comment.