* garrow_tensor_is_column_major: * @tensor: A #GArrowTensor. * * Returns: %TRUE if the tensor is column major a.k.a. Fortran order, * %FALSE otherwise. * * Since: 0.3.0 */
| 428 | * Since: 0.3.0 |
| 429 | */ |
| 430 | gboolean |
| 431 | garrow_tensor_is_column_major(GArrowTensor *tensor) |
| 432 | { |
| 433 | auto arrow_tensor = garrow_tensor_get_raw(tensor); |
| 434 | return arrow_tensor->is_column_major(); |
| 435 | } |
| 436 | |
| 437 | G_END_DECLS |
| 438 |
nothing calls this directly
no test coverage detected