pyarrow.LargeBinaryScalar¶
- 
class 
pyarrow.LargeBinaryScalar¶ Bases:
pyarrow.lib.BinaryScalar- 
__init__(*args, **kwargs)¶ Initialize self. See help(type(self)) for accurate signature.
Methods
__init__(*args, **kwargs)Initialize self.
as_buffer(self)Return a view over this value as a Buffer object.
as_py(self)Return this value as a Python bytes.
cast(self, target_type)Attempt a safe cast to target data type.
equals(self, Scalar other)Attributes
Holds a valid (non-null) value.
Data type of the Scalar object.
- 
as_buffer(self)¶ Return a view over this value as a Buffer object.
- 
as_py(self)¶ Return this value as a Python bytes.
- 
cast(self, target_type)¶ Attempt a safe cast to target data type.
- 
equals(self, Scalar other)¶ 
- 
is_valid¶ Holds a valid (non-null) value.
- 
type¶ Data type of the Scalar object.
-