Return the component relative to the parent space.
(self)
| 794 | return FunctionSpace(self._mesh, sub_element, cppV_sub) |
| 795 | |
| 796 | def component(self): |
| 797 | """Return the component relative to the parent space.""" |
| 798 | return self._cpp_object.component() # type: ignore |
| 799 | |
| 800 | def contains(self, V) -> bool: |
| 801 | """Check if a space is contained in, or is the same as, this space. |
no outgoing calls