pub trait ChunkLen {
    fn len(&self) -> usize;

    fn is_empty(&self) -> bool { ... }
}

Required Methods

Get the length of the ChunkedArray

Provided Methods

Check if ChunkedArray is empty.

Implementors