polars_core::datatypes

Type Alias Int128Chunked

Source
pub type Int128Chunked = ChunkedArray<Int128Type>;
Available on crate feature dtype-i128 only.

Aliased Type§

struct Int128Chunked { /* private fields */ }

Implementations§

Source§

impl Int128Chunked

Source

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

Available on crate feature dtype-decimal only.
Source

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

Available on crate feature dtype-decimal only.

Trait Implementations§

Source§

impl VecHash for Int128Chunked

Source§

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

Compute the hash for all values in the array.
Source§

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