(a: Datum<'a>)
| 3145 | } |
| 3146 | |
| 3147 | fn unnest_array<'a>(a: Datum<'a>) -> impl Iterator<Item = (Row, Diff)> + 'a { |
| 3148 | a.unwrap_array() |
| 3149 | .elements() |
| 3150 | .iter() |
| 3151 | .map(move |e| (Row::pack_slice(&[e]), Diff::ONE)) |
| 3152 | } |
| 3153 | |
| 3154 | fn unnest_list<'a>(a: Datum<'a>) -> impl Iterator<Item = (Row, Diff)> + 'a { |
| 3155 | a.unwrap_list() |
no test coverage detected