(self, variable: Variable, name: T_Name = None)
| 615 | raise NotImplementedError() |
| 616 | |
| 617 | def decode(self, variable: Variable, name: T_Name = None) -> Variable: |
| 618 | dims, data, attrs, encoding = unpack_for_decoding(variable) |
| 619 | if not data.dtype.isnative: |
| 620 | data = NativeEndiannessArray(data) |
| 621 | return Variable(dims, data, attrs, encoding, fastpath=True) |
| 622 | else: |
| 623 | return variable |
| 624 | |
| 625 | |
| 626 | class NonStringCoder(VariableCoder): |
nothing calls this directly
no test coverage detected