mirror of
https://github.com/vee1e/flatbuffers.git
synced 2026-09-01 17:57:25 +00:00
Add Ref.AsStringBytes to flatbuffers.flexbuffers Python API (#7713)
* Add Ref.AsStringBytes to flatbuffers.flexbuffers Python API * Append Bytes to AsStringBytes return value Co-authored-by: Jared Junyoung Lim <jaredlim@google.com>
This commit is contained in:
parent
e1a2f688e0
commit
40aa964057
1 changed files with 9 additions and 0 deletions
|
|
@ -727,6 +727,15 @@ class Ref:
|
|||
def IsString(self):
|
||||
return self._type is Type.STRING
|
||||
|
||||
@property
|
||||
def AsStringBytes(self):
|
||||
if self.IsString:
|
||||
return String(self._Indirect(), self._byte_width).Bytes
|
||||
elif self.IsKey:
|
||||
return self.AsKeyBytes
|
||||
else:
|
||||
raise self._ConvertError(Type.STRING)
|
||||
|
||||
@property
|
||||
def AsString(self):
|
||||
if self.IsString:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue