(left: Self::Native, right: Self::Native)
| 625 | |
| 626 | impl IntervalOp for IntervalYearMonthType { |
| 627 | fn add(left: Self::Native, right: Self::Native) -> Result<Self::Native, ArrowError> { |
| 628 | left.add_checked(right) |
| 629 | } |
| 630 | |
| 631 | fn sub(left: Self::Native, right: Self::Native) -> Result<Self::Native, ArrowError> { |
| 632 | left.sub_checked(right) |
no outgoing calls
no test coverage detected