Type Alias polars_core::datatypes::Int128Chunked

source ·
pub type Int128Chunked = ChunkedArray<Int128Type>;
Available on crate feature dtype-decimal only.

Aliased Type§

struct Int128Chunked { /* private fields */ }

Implementations§

source§

impl Int128Chunked

source

pub fn into_decimal_unchecked( self, precision: Option<usize>, scale: usize ) -> DecimalChunked

source

pub fn into_decimal( self, precision: Option<usize>, scale: usize ) -> PolarsResult<DecimalChunked>

Trait Implementations§

source§

impl IntoSeries for Int128Chunked

source§

fn into_series(self) -> Series
where Self: Sized,

source§

fn is_series() -> bool

source§

impl VecHash for Int128Chunked

source§

fn vec_hash( &self, random_state: RandomState, buf: &mut Vec<u64> ) -> PolarsResult<()>

Compute the hash for all values in the array. Read more
source§

fn vec_hash_combine( &self, random_state: RandomState, hashes: &mut [u64] ) -> PolarsResult<()>