class documentation

Base class for all wrappers in the trcks.oop module.

Method __init__ Construct wrapper.
Method __repr__ Return a string representation of the wrapper.
Property core The wrapped object.
Instance Variable _core Undocumented
def __init__(self, core: _T_co): (source)

Construct wrapper.

Parameters
core:_T_coThe value to be wrapped.
@override
def __repr__(self) -> str: (source)

Return a string representation of the wrapper.

The wrapped object.

Undocumented