use crate::array::Array;
mod array;
pub mod common;
mod deserialize;
mod error;
pub(crate) mod file;
#[cfg(feature = "io_flight")]
mod flight;
mod read_basic;
mod reader;
mod schema;
mod stream;
pub(crate) use common::first_dict_field;
pub use common::{ProjectionInfo, prepare_projection};
pub use error::OutOfSpecKind;
pub use file::{
FileMetadata, deserialize_footer, get_row_count, get_row_count_from_blocks, read_batch,
read_dictionary_block, read_file_dictionaries, read_file_metadata,
};
use polars_utils::aliases::PlHashMap;
pub use reader::{BlockReader, FileReader};
pub use schema::deserialize_schema;
pub use stream::{StreamMetadata, StreamReader, StreamState, read_stream_metadata};
pub type Dictionaries = PlHashMap<i64, Box<dyn Array>>;
pub(crate) type Node<'a> = arrow_format::ipc::FieldNodeRef<'a>;
pub(crate) type IpcBuffer<'a> = arrow_format::ipc::BufferRef<'a>;
pub(crate) type Compression<'a> = arrow_format::ipc::BodyCompressionRef<'a>;
pub(crate) type Version = arrow_format::ipc::MetadataVersion;
#[cfg(feature = "io_flight")]
pub use flight::*;
pub trait SendableIterator: Send + Iterator {}
impl<T: Iterator + Send> SendableIterator for T {}