BooleanChunked
struct BooleanChunked
from_array
pub fn from_array(values: [bool], name: string = ""): BooleanChunked
from_array
pub fn from_array(values: [bool], name: string = ""): BooleanChunked
from_array_opt
pub fn from_array_opt(values: [bool?], name: string = ""): BooleanChunked
from_array_opt
pub fn from_array_opt(values: [bool?], name: string = ""): BooleanChunked
Returns whether all values in the array are true
.
Returns whether all values in the array are true
.
Returns whether all values in the array are true
.
Null values are ignored.
all_kleene
pub fn all_kleene(self): bool?
Returns whether all values in the column are true
.
all_kleene
pub fn all_kleene(self): bool?
Returns whether all values in the column are true
.
Returns whether all values in the column are true
.
The output is unknown (None) if the array contains any null values and no false values.
Returns whether any of the values in the column are true
.
Returns whether any of the values in the column are true
.
Returns whether any of the values in the column are true
.
Null values are ignored.
any_kleene
pub fn any_kleene(self): bool?
Returns whether any of the values in the column are true
.
any_kleene
pub fn any_kleene(self): bool?
Returns whether any of the values in the column are true
.
Returns whether any of the values in the column are true
.
The output is unknown (None) if the array contains any null values and no true values.
append
pub fn append(self, other: BooleanChunked) throws PolarsError
Append another chunked array to this chunked array.
append
pub fn append(self, other: BooleanChunked) throws PolarsError
Append another chunked array to this chunked array.
Append another chunked array to this chunked array.
clone
pub fn clone(self): BooleanChunked
Clone the chunked array.
clone
pub fn clone(self): BooleanChunked
Clone the chunked array.
Clone the chunked array.
Returns the data type of the chunked array.
Returns the data type of the chunked array.
Returns the data type of the chunked array.
Returns the first value of the chunked array.
Returns the first value of the chunked array.
Returns the first value of the chunked array.
Returns the value at the given index.
Returns the value at the given index.
Returns the value at the given index.
Returns true
if the chunked array is empty.
Returns true
if the chunked array is empty.
Returns true
if the chunked array is empty.
iter
pub fn iter(self): BooleanChunkedIter
Returns an iterator over the chunked array.
iter
pub fn iter(self): BooleanChunkedIter
Returns an iterator over the chunked array.
Returns an iterator over the chunked array.
iter_no_null
pub fn iter_no_null(self): BooleanChunkedNoNullIter
Returns an iterator over the chunked array without null values.
iter_no_null
pub fn iter_no_null(self): BooleanChunkedNoNullIter
Returns an iterator over the chunked array without null values.
Returns an iterator over the chunked array without null values.
Returns the last value of the chunked array.
Returns the last value of the chunked array.
Returns the last value of the chunked array.
Returns the length of the chunked array.
Returns the length of the chunked array.
Returns the length of the chunked array.
Returns the name of the chunked array.
Returns the name of the chunked array.
Returns the name of the chunked array.
null_count
pub fn null_count(self): int
Returns the null count of the chunked array.
null_count
pub fn null_count(self): int
Returns the null count of the chunked array.
Returns the null count of the chunked array.
Convert the chunked array to a Navi array.
Convert the chunked array to a Navi array.
Convert the chunked array to a Navi array.
to_array_no_null
pub fn to_array_no_null(self): [bool]
Convert the chunked array to a Navi array without null values.
to_array_no_null
pub fn to_array_no_null(self): [bool]
Convert the chunked array to a Navi array without null values.
Convert the chunked array to a Navi array without null values.