INNER CODE UNIT · Python
sbvalue
mongodb/mongo-c-driver · lldb_bson.py:238
def sbvalue(self) -> SBValue:
"""Obtain the SBValue associated with this display object"""
return self.__sbvalue
@property
def value(self) -> T:
"""Obtain the decoded BSON value"""
if self.__value is None:
self.__value = self.__parse__(self.sbvalue)
return self.__value
@property
def address(self) -> int:
"""Obtain the memory address of the associated object"""
return self.sbvalue.load_addr
@print_errors
@override