Trait polars::prelude::BinaryNameSpaceImpl

source ·
pub trait BinaryNameSpaceImpl: AsBinary {
    // Provided methods
    fn contains(&self, lit: &[u8]) -> ChunkedArray<BooleanType> { ... }
    fn contains_chunked(
        &self,
        lit: &ChunkedArray<BinaryType>
    ) -> ChunkedArray<BooleanType> { ... }
    fn ends_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType> { ... }
    fn starts_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType> { ... }
    fn starts_with_chunked(
        &self,
        prefix: &ChunkedArray<BinaryType>
    ) -> ChunkedArray<BooleanType> { ... }
    fn ends_with_chunked(
        &self,
        suffix: &ChunkedArray<BinaryType>
    ) -> ChunkedArray<BooleanType> { ... }
}
Available on crate feature polars-ops only.

Provided Methods§

source

fn contains(&self, lit: &[u8]) -> ChunkedArray<BooleanType>

Check if binary contains given literal

source

fn contains_chunked( &self, lit: &ChunkedArray<BinaryType> ) -> ChunkedArray<BooleanType>

source

fn ends_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings ends with a substring

source

fn starts_with(&self, sub: &[u8]) -> ChunkedArray<BooleanType>

Check if strings starts with a substring

source

fn starts_with_chunked( &self, prefix: &ChunkedArray<BinaryType> ) -> ChunkedArray<BooleanType>

source

fn ends_with_chunked( &self, suffix: &ChunkedArray<BinaryType> ) -> ChunkedArray<BooleanType>

Implementors§