pub fn apply_str_num<T, N, O>(
lhs: StringAVTExt<'_, T>,
rhs: &[N],
op: ArithmeticOperator,
) -> Result<StringArray<O>, KernelError>Expand description
String-numeric arithmetic operation dispatcher. Supports string multiplication (repeat string N times) with safety limits. Other operations pass through unchanged. Handles null propagation correctly.
ยงType Parameters
T: Offset type for the input array (e.g.,u32,u64)N: Numeric type convertible tousizeO: Offset type for the output array