pub trait BinaryNameSpaceImpl: AsBinary {
    fn contains(&self, lit: &[u8]) -> PolarsResult<BooleanChunked> { ... }
    fn contains_literal(&self, lit: &[u8]) -> PolarsResult<BooleanChunked> { ... }
    fn ends_with(&self, sub: &[u8]) -> BooleanChunked { ... }
    fn starts_with(&self, sub: &[u8]) -> BooleanChunked { ... }
}
Available on crate feature dtype-binary only.

Provided Methods§

Check if binary contains given literal

Check if strings contain a given literal

Check if strings ends with a substring

Check if strings starts with a substring

Implementations on Foreign Types§

Implementors§