Type Definition polars_core::datatypes::DateChunked
source · [−]Implementations
sourceimpl DateChunked
impl DateChunked
pub fn as_date_iter(
&self
) -> impl Iterator<Item = Option<NaiveDate>> + TrustedLen + '_
sourcepub fn from_naive_date<I: IntoIterator<Item = NaiveDate>>(
name: &str,
v: I
) -> Self
pub fn from_naive_date<I: IntoIterator<Item = NaiveDate>>(
name: &str,
v: I
) -> Self
Construct a new DateChunked
from an iterator over NaiveDate
.
sourcepub fn from_naive_date_options<I: IntoIterator<Item = Option<NaiveDate>>>(
name: &str,
v: I
) -> Self
pub fn from_naive_date_options<I: IntoIterator<Item = Option<NaiveDate>>>(
name: &str,
v: I
) -> Self
Construct a new DateChunked
from an iterator over optional NaiveDate
.
Trait Implementations
sourceimpl From<ChunkedArray<Int32Type>> for DateChunked
impl From<ChunkedArray<Int32Type>> for DateChunked
sourcefn from(ca: Int32Chunked) -> Self
fn from(ca: Int32Chunked) -> Self
Performs the conversion.