Create a decimal from a gdb.Value representing the address of the raw decimal storage.
(cls, address)
| 881 | |
| 882 | @classmethod |
| 883 | def from_address(cls, address): |
| 884 | """ |
| 885 | Create a decimal from a gdb.Value representing the address of the |
| 886 | raw decimal storage. |
| 887 | """ |
| 888 | return cls(address) |
| 889 | |
| 890 | @property |
| 891 | def words(self): |
no outgoing calls