r""" Add a dimension of size one at the specified axis. This function follows the api from :any:`numpy.expand_dims`. See: https://numpy.org/doc/stable/reference/generated/numpy.expand_dims.html
(self, a, axis)
| 892 | raise NotImplementedError() |
| 893 | |
| 894 | def unsqueeze(self, a, axis): |
| 895 | r""" |
| 896 | Add a dimension of size one at the specified axis. |
| 897 | |
| 898 | This function follows the api from :any:`numpy.expand_dims`. |
| 899 | |
| 900 | See: https://numpy.org/doc/stable/reference/generated/numpy.expand_dims.html |
| 901 | """ |
| 902 | raise NotImplementedError() |
| 903 | |
| 904 | def bitsize(self, type_as): |
| 905 | r""" |
no outgoing calls