[][src]Type Definition polars::datatypes::BooleanChunked

type BooleanChunked = ChunkedArray<BooleanType>;

Trait Implementations

impl Agg<u64> for BooleanChunked[src]

Booleans are casted to 1 or 0.

fn sum(&self) -> Option<u64>[src]

Returns None if the array is empty or only contains null values.

impl<'a> Apply<'a, bool, bool> for BooleanChunked[src]

impl ChunkOps for BooleanChunked[src]

impl Downcast<PrimitiveArray<BooleanType>> for BooleanChunked[src]

impl FromIterator<bool> for BooleanChunked[src]

impl HashJoin<BooleanType> for BooleanChunked[src]

impl<'a> IntoIterator for &'a BooleanChunked[src]

type Item = Option<bool>

The type of the elements being iterated over.

type IntoIter = ChunkBoolIter<'a>

Which kind of iterator are we turning this into?

impl Take for BooleanChunked[src]

impl Unique<BooleanType> for BooleanChunked[src]