r"""Returns a view of the :class:`FeatureStore` given a not yet fully-specified :class:`TensorAttr`.
(self, *args, **kwargs)
| 447 | # `AttrView` methods ###################################################### |
| 448 | |
| 449 | def view(self, *args, **kwargs) -> AttrView: |
| 450 | r"""Returns a view of the :class:`FeatureStore` given a not yet |
| 451 | fully-specified :class:`TensorAttr`. |
| 452 | """ |
| 453 | attr = self._tensor_attr_cls.cast(*args, **kwargs) |
| 454 | return AttrView(self, attr) |
| 455 | |
| 456 | # Helper functions ######################################################## |
| 457 |