pub fn starts_with_str_str<T: Integer, U: Integer>(
lhs: StringAVT<'_, T>,
rhs: StringAVT<'_, U>,
) -> BooleanArray<()>Expand description
Performs string predicate operations between two string arrays.
Applies the specified string method (contains, starts_with, ends_with) to compare corresponding elements of two string arrays.
§Type Parameters
T- Integer type for left string array offsetsU- Integer type for right string array offsets
§Arguments
lhs- Left string array (data, offset, length)rhs- Right string array (data, offset, length)
§Returns
Boolean array containing comparison results