Quick wrapper to get the array class of the module.
(mod: ModType)
| 79 | |
| 80 | |
| 81 | def array_type(mod: ModType) -> DuckArrayTypes: |
| 82 | """Quick wrapper to get the array class of the module.""" |
| 83 | return _get_cached_duck_array_module(mod).type |
| 84 | |
| 85 | |
| 86 | def mod_version(mod: ModType) -> Version: |
searching dependent graphs…