Quick wrapper to get the version of the module.
(mod: ModType)
| 84 | |
| 85 | |
| 86 | def mod_version(mod: ModType) -> Version: |
| 87 | """Quick wrapper to get the version of the module.""" |
| 88 | return _get_cached_duck_array_module(mod).version |
| 89 | |
| 90 | |
| 91 | def is_chunked_array(x: duckarray[Any, Any]) -> bool: |
nothing calls this directly
no test coverage detected
searching dependent graphs…