ends_with_dict_str

Function ends_with_dict_str 

Source
pub fn ends_with_dict_str<T: Integer, U: Integer>(
    lhs: CategoricalAVT<'_, T>,
    rhs: StringAVT<'_, U>,
) -> Result<BooleanArray<()>, KernelError>
Expand description

Performs string predicate operations between categorical and string arrays.

Applies the specified string method (contains, starts_with, ends_with) to compare categorical array elements with string array elements.

§Type Parameters

  • T - Integer type for categorical array offsets
  • U - Integer type for string array offsets

§Arguments

  • lhs - Categorical array (data, offset, length)
  • rhs - String array (data, offset, length)

§Returns

Result containing boolean array with comparison results, or error