🛠️ Available Operators

▶ None-aware attribute access a?.b _t.b if (_t := a) is not None else None
▶ None-aware subscript a?[b] _t[b] if (_t := a) is not None else None
▶ Coalesce a ?? b _t if (_t := a) is not None else b
▶ Coalesce assign a ??= b if a is None: a = b
▶ Maybe maybe a.b _t.b if (_t := a) is not None else None
The is not None check for Maybe is performed for every attribute and subscript.