(&self, scope: Scope<'_>)
| 52 | } |
| 53 | |
| 54 | fn exec(&self, scope: Scope<'_>) -> CallResult<()> { |
| 55 | let ndims = { |
| 56 | let typed_ptr = scope.get_ref(0); |
| 57 | typed_ptr.array_dimensions().len() as i32 |
| 58 | }; |
| 59 | scope.return_integer(ndims) |
| 60 | } |
| 61 | } |
nothing calls this directly
no test coverage detected