(haystack: &ArrayRef, needle: &ArrayRef)
| 234 | } |
| 235 | |
| 236 | fn array_has_inner_for_array(haystack: &ArrayRef, needle: &ArrayRef) -> Result<ArrayRef> { |
| 237 | let haystack = haystack.as_ref().try_into()?; |
| 238 | array_has_dispatch_for_array(haystack, needle) |
| 239 | } |
| 240 | |
| 241 | #[derive(Copy, Clone)] |
| 242 | enum ArrayWrapper<'a> { |
no test coverage detected
searching dependent graphs…