pyarrow.StructScalar#
- class pyarrow.StructScalar#
-
Concrete class for struct scalars.
- __init__(*args, **kwargs)#
Methods
__init__(*args, **kwargs)as_py(self)Return this value as a Python dict.
cast(self[, target_type, safe, options, ...])Cast scalar value to another data type.
equals(self, Scalar other)- Parameters:
get(k[,d])items(self)keys()validate(self, *[, full])Perform validation checks.
values()Attributes
Holds a valid (non-null) value.
Data type of the Scalar object.
- as_py(self)#
Return this value as a Python dict.
- cast(self, target_type=None, safe=None, options=None, memory_pool=None)#
Cast scalar value to another data type.
See
pyarrow.compute.cast()for usage.- Parameters:
- Returns:
- scalar
AScalarofthegiventargetdatatype.
- scalar
- equals(self, Scalar other)#
- Parameters:
- other
pyarrow.Scalar
- other
- Returns:
- get(k[, d]) D[k] if k in D, else d. d defaults to None.#
- is_valid#
Holds a valid (non-null) value.
- items(self)#
- keys() a set-like object providing a view on D's keys#
- type#
Data type of the Scalar object.
- validate(self, *, full=False)#
Perform validation checks. An exception is raised if validation fails.
By default only cheap validation checks are run. Pass full=True for thorough validation checks (potentially O(n)).
- values() an object providing a view on D's values#