(
self,
value: Nullable[Union["VarPointer[T]", T]],
)
| 104 | self._address = id(value) |
| 105 | |
| 106 | def __irshift__( |
| 107 | self, |
| 108 | value: Nullable[Union["VarPointer[T]", T]], |
| 109 | ): |
| 110 | self.assign(value, frame=3) |
| 111 | return self |
| 112 | |
| 113 | |
| 114 | def to_var_ptr(value: T) -> VarPointer[T]: |