pub struct FloatView { /* private fields */ }Implementations§
source§impl FloatView
impl FloatView
sourcepub fn as_raw_slice(&self) -> &[f32]
pub fn as_raw_slice(&self) -> &[f32]
Raw slice of target type.
sourcepub fn as_raw_ptr(&self) -> *const f32
pub fn as_raw_ptr(&self) -> *const f32
Raw pointer of the slice.
sourcepub fn to_nulls_vec(&self) -> Vec<bool>
pub fn to_nulls_vec(&self) -> Vec<bool>
Build a nulls vector.
sourcepub fn is_null_iter(&self) -> NullsIter<'_>
pub fn is_null_iter(&self) -> NullsIter<'_>
A iterator only decide if the value at some row index is NULL or not.
sourcepub unsafe fn is_null_unchecked(&self, row: usize) -> bool
pub unsafe fn is_null_unchecked(&self, row: usize) -> bool
Unsafe version for [methods.is_null]
sourcepub unsafe fn get_unchecked(&self, row: usize) -> Option<f32>
pub unsafe fn get_unchecked(&self, row: usize) -> Option<f32>
Get nullable value at row index.