* garrow_tensor_get_size: * @tensor: A #GArrowTensor. * * Returns: The number of value cells in the tensor. * * Since: 0.3.0 */
| 366 | * Since: 0.3.0 |
| 367 | */ |
| 368 | gint64 |
| 369 | garrow_tensor_get_size(GArrowTensor *tensor) |
| 370 | { |
| 371 | auto arrow_tensor = garrow_tensor_get_raw(tensor); |
| 372 | return arrow_tensor->size(); |
| 373 | } |
| 374 | |
| 375 | /** |
| 376 | * garrow_tensor_is_mutable: |
nothing calls this directly
no test coverage detected