pub trait ChunkFull<T> {
// Required method
fn full(name: PlSmallStr, value: T, length: usize) -> Self
where Self: Sized;
}
Expand description
Fill a ChunkedArray with one value.
Required Methods§
Sourcefn full(name: PlSmallStr, value: T, length: usize) -> Selfwhere
Self: Sized,
fn full(name: PlSmallStr, value: T, length: usize) -> Selfwhere
Self: Sized,
Create a ChunkedArray with a single value.
Implementors§
impl ChunkFull<&Series> for ChunkedArray<FixedSizeListType>
Available on crate feature
dtype-array
only.impl ChunkFull<&Series> for ChunkedArray<ListType>
impl ChunkFull<bool> for ChunkedArray<BooleanType>
impl<'a> ChunkFull<&'a str> for ChunkedArray<StringType>
impl<'a> ChunkFull<&'a [u8]> for ChunkedArray<BinaryOffsetType>
impl<'a> ChunkFull<&'a [u8]> for ChunkedArray<BinaryType>
impl<T> ChunkFull<<T as PolarsNumericType>::Native> for ChunkedArray<T>where
T: PolarsNumericType,
impl<T> ChunkFull<T> for ChunkedArray<ObjectType<T>>where
T: PolarsObject,
Available on crate feature
object
only.