* garrow_tensor_is_mutable: * @tensor: A #GArrowTensor. * * Returns: %TRUE if the tensor is mutable, %FALSE otherwise. * * Since: 0.3.0 */
| 381 | * Since: 0.3.0 |
| 382 | */ |
| 383 | gboolean |
| 384 | garrow_tensor_is_mutable(GArrowTensor *tensor) |
| 385 | { |
| 386 | auto arrow_tensor = garrow_tensor_get_raw(tensor); |
| 387 | return arrow_tensor->is_mutable(); |
| 388 | } |
| 389 | |
| 390 | /** |
| 391 | * garrow_tensor_is_contiguous: |
nothing calls this directly
no test coverage detected