pub fn add_dyn_checked(
    left: &dyn Array,
    right: &dyn Array
) -> Result<ArrayRef, ArrowError>
Expand description

Perform left + right operation on two arrays. If either left or right value is null then the result is also null.

This detects overflow and returns an Err for that. For an non-overflow-checking variant, use add_dyn instead.