pub trait ChunkTakeUnchecked<Idx: ?Sized> {
// Required method
unsafe fn take_unchecked(&self, indices: &Idx) -> Self;
}
Required Methods§
Sourceunsafe fn take_unchecked(&self, indices: &Idx) -> Self
unsafe fn take_unchecked(&self, indices: &Idx) -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl ChunkTakeUnchecked<ChunkedArray<UInt32Type>> for ArrayChunked
Available on crate feature
dtype-array
only.impl ChunkTakeUnchecked<ChunkedArray<UInt32Type>> for BinaryChunked
impl ChunkTakeUnchecked<ChunkedArray<UInt32Type>> for ListChunked
impl ChunkTakeUnchecked<ChunkedArray<UInt32Type>> for StringChunked
impl<I: AsRef<[IdxSize]> + ?Sized> ChunkTakeUnchecked<I> for ArrayChunked
Available on crate feature
dtype-array
only.