* garrow_tensor_is_row_major: * @tensor: A #GArrowTensor. * * Returns: %TRUE if the tensor is row major a.k.a. C order, * %FALSE otherwise. * * Since: 0.3.0 */
| 412 | * Since: 0.3.0 |
| 413 | */ |
| 414 | gboolean |
| 415 | garrow_tensor_is_row_major(GArrowTensor *tensor) |
| 416 | { |
| 417 | auto arrow_tensor = garrow_tensor_get_raw(tensor); |
| 418 | return arrow_tensor->is_row_major(); |
| 419 | } |
| 420 | |
| 421 | /** |
| 422 | * garrow_tensor_is_column_major: |
nothing calls this directly
no test coverage detected